mirror of
https://github.com/systemd/systemd.git
synced 2024-12-25 01:34:28 +03:00
core: constify a few things
This commit is contained in:
parent
b41b9d2ae9
commit
96d66d89c9
@ -44,7 +44,7 @@ FDSet *fdset_new(void) {
|
||||
return MAKE_FDSET(set_new(NULL));
|
||||
}
|
||||
|
||||
int fdset_new_array(FDSet **ret, int *fds, unsigned n_fds) {
|
||||
int fdset_new_array(FDSet **ret, const int *fds, unsigned n_fds) {
|
||||
unsigned i;
|
||||
FDSet *s;
|
||||
int r;
|
||||
|
@ -35,7 +35,7 @@ int fdset_consume(FDSet *s, int fd);
|
||||
bool fdset_contains(FDSet *s, int fd);
|
||||
int fdset_remove(FDSet *s, int fd);
|
||||
|
||||
int fdset_new_array(FDSet **ret, int *fds, unsigned n_fds);
|
||||
int fdset_new_array(FDSet **ret, const int *fds, unsigned n_fds);
|
||||
int fdset_new_fill(FDSet **ret);
|
||||
int fdset_new_listen_fds(FDSet **ret, bool unset);
|
||||
|
||||
|
@ -1488,7 +1488,7 @@ static unsigned manager_dispatch_dbus_queue(Manager *m) {
|
||||
return n;
|
||||
}
|
||||
|
||||
static void manager_invoke_notify_message(Manager *m, Unit *u, pid_t pid, char *buf, size_t n, FDSet *fds) {
|
||||
static void manager_invoke_notify_message(Manager *m, Unit *u, pid_t pid, const char *buf, size_t n, FDSet *fds) {
|
||||
_cleanup_strv_free_ char **tags = NULL;
|
||||
|
||||
assert(m);
|
||||
@ -1618,7 +1618,7 @@ static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void invoke_sigchld_event(Manager *m, Unit *u, siginfo_t *si) {
|
||||
static void invoke_sigchld_event(Manager *m, Unit *u, const siginfo_t *si) {
|
||||
assert(m);
|
||||
assert(u);
|
||||
assert(si);
|
||||
|
Loading…
Reference in New Issue
Block a user