**arena_size** field of the header. If a writer needs to write to a file where
the actual file size on disk is smaller than the reported value it shall
immediately rotate the file and start a new one. If a writer is asked to write
-to a file with a header that is shorter than his own definition of the struct
-Header, he shall immediately rotate the file and start a new one.
+to a file with a header that is shorter than its own definition of the struct
+Header, it shall immediately rotate the file and start a new one.
The **n_objects** field contains a counter for objects currently available in
this file. As objects are appended to the end of the file this counter is
char **search_path;
/* Where we shall create or remove our installation symlinks, aka "configuration", and where the user/admin
- * shall place his own unit files. */
+ * shall place their own unit files. */
char *persistent_config;
char *runtime_config;
if (limit == 0) /* This makes no sense, we are userspace and hence count as tasks too, and we want to live,
* hence the limit conceptually has to be above 0. Also, most likely if anyone asks for a zero
- * limit he/she probably means "no limit", hence let's better refuse this to avoid
+ * limit they probably mean "no limit", hence let's better refuse this to avoid
* confusion. */
return -EINVAL;
if (connect(fd, &sa.sa, sa_len) < 0)
return errno == EINVAL ? -ENXIO : -errno; /* Propagate initial error if we get EINVAL, i.e. we have
- * indication that his wasn't an AF_UNIX socket after all */
+ * indication that this wasn't an AF_UNIX socket after all */
if ((flags & O_ACCMODE) == O_RDONLY)
r = shutdown(fd, SHUT_WR);
return log_oom();
/* If the user asked for a particular
- * property, show it to him, even if it is
+ * property, show it to them, even if it is
* empty. */
arg_all = true;
break;
return log_oom();
/* If the user asked for a particular
- * property, show it to him, even if it is
+ * property, show it to them, even if it is
* empty. */
arg_all = true;
break;
return log_oom();
/* If the user asked for a particular
- * property, show it to him, even if it is
+ * property, show it to them, even if it is
* empty. */
arg_all = true;
break;
/* Some BIOSes report rubbish indexes that are excessively high (2^24-1 is an index VMware likes to
* report for example). Let's define a cut-off where we don't consider the index reliable anymore. We
* pick some arbitrary cut-off, which is somewhere beyond the realistic number of physical network
- * interface a system might have. Ideally the kernel would already filter his crap for us, but it
+ * interface a system might have. Ideally the kernel would already filter this crap for us, but it
* doesn't currently. */
if (idx > ONBOARD_INDEX_MAX)
return -ENOENT;