Typo: 'Accomodate' -> 'Accommodate'
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 1 Apr 2020 19:09:22 +0000 (15:09 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 1 Apr 2020 19:19:16 +0000 (15:19 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Change-Id: I1f5408d82546db7df14d4899d4d2c52ec1421b52
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-relayd/main.c
src/bin/lttng-sessiond/notification-thread-events.c
src/common/defaults.h
src/common/dynamic-buffer.h
src/common/fd-tracker/fd-tracker.c
src/common/fd-tracker/fd-tracker.h
src/common/uri.c

index 12b7b74f6d8ad7cc5d43799396ee4ba27d456bc2..71a2d925f4bfa0fa983410ebc1b297573b39d561 100644 (file)
@@ -507,7 +507,7 @@ static int set_fd_pool_size(void)
                goto end;
        }
 
-       DBG("File descriptor pool size argument (%u) adjusted to %u to accomodate transient fd uses",
+       DBG("File descriptor pool size argument (%u) adjusted to %u to accommodates transient fd uses",
                        lttng_opt_fd_pool_size,
                        lttng_opt_fd_pool_size - DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE);
        lttng_opt_fd_pool_size -= DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE;
index 73ec72f89c308b86ce2c95da5c364738d5b42680..6c69a02328e4c6a4ffd483c100522722cebdae1c 100644 (file)
@@ -2949,7 +2949,7 @@ bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
                 * forego this double-multiplication or it could be performed
                 * as fixed-point math.
                 *
-                * Note that caching should accomodate the case where the
+                * Note that caching should accommodates the case where the
                 * condition applies to multiple channels (i.e. don't assume
                 * that all channels matching my_chann* have the same size...)
                 */
index 0b6cb763c0685e128c6947c34ea8638e4ed91ae2..baf3d5fcce5d3f1cdba9374dd64e1408183984af 100644 (file)
@@ -85,7 +85,7 @@
 
 #define DEFAULT_RELAYD_MIN_FD_POOL_SIZE                100
 /*
- * The file descriptor pool size needs a reserve buffer to accomodate the
+ * The file descriptor pool size needs a reserve buffer to accommodates the
  * indirect use of short-lived file descriptors. For instance, glibc will
  * create a socket (and thus, use an fd) during calls to gethostname() or
  * when querying the user's group. Other calls also probably make use of
index 000f3cf93db99bcb21e8c3b0138d05c270937788..1f27f74033be3464ca8f3bdb6e0771f059066dd5 100644 (file)
@@ -50,7 +50,7 @@ int lttng_dynamic_buffer_append_buffer(struct lttng_dynamic_buffer *dst_buffer,
 
 /*
  * Set the buffer's size to new_size. The capacity of the buffer will
- * be expanded (if necessary) to accomodate new_size. Areas acquired by
+ * be expanded (if necessary) to accommodates new_size. Areas acquired by
  * a size increase will be zeroed.
  *
  * Be careful to expand the buffer's size _before_ calling out external
@@ -69,7 +69,7 @@ int lttng_dynamic_buffer_set_size(struct lttng_dynamic_buffer *buffer,
                size_t new_size);
 
 /*
- * Set the buffer's capacity to accomodate the new_capacity, allocating memory
+ * Set the buffer's capacity to accommodates the new_capacity, allocating memory
  * as necessary. The buffer's content is preserved. Setting a buffer's capacity
  * is meant as a _hint_ to the underlying buffer and is only optimization; no
  * guarantee is offered that subsequent calls to append or set_size will succeed.
index 6c84348755b35d2d7a9608073ab0957684e36d76..8ab87f6a31ceba436d665d373e08fd58bf08cdc0 100644 (file)
@@ -642,7 +642,7 @@ int fd_tracker_open_unsuspendable_fd(struct fd_tracker *tracker,
                } else {
                        /*
                         * There are not enough active suspendable file
-                        * descriptors to open a new fd and still accomodate the
+                        * descriptors to open a new fd and still accommodates the
                         * tracker's capacity.
                         */
                        WARN("Cannot open unsuspendable fd, too many unsuspendable file descriptors are opened (%u)",
index 504f92a3eed9b773254cd2823de4f4df7025eb49..348ac59638bc17ecec703b763129db6daaa8e336 100644 (file)
@@ -106,7 +106,7 @@ struct fs_handle *fd_tracker_open_fs_handle(struct fd_tracker *tracker,
  * negative tracker-specific codes may be returned:
  *   - ENOMEM: allocation of a new entry failed,
  *   - EMFILE: too many unsuspendable fds are opened and the tracker can't
- *             accomodate the request for a new unsuspendable entry.
+ *             accommodates the request for a new unsuspendable entry.
  */
 LTTNG_HIDDEN
 int fd_tracker_open_unsuspendable_fd(struct fd_tracker *tracker,
index 0f20c61b8eb13efe51f7c2185a0e1623b74995aa..0638aebd90026ea9b7378106927ec5d9796af704 100644 (file)
@@ -126,7 +126,7 @@ static int set_ip_address(const char *addr, int af, char *dst, size_t size)
                         * We choose to use the system name resolution API first
                         * to honor its network configuration. If this fails, we
                         * resolve to the appropriate loopback address. This is
-                        * done to accomodate systems which may want to start
+                        * done to accommodates systems which may want to start
                         * tracing before their network configured.
                         */
                        const char *loopback_addr = af == AF_INET ?
This page took 0.032018 seconds and 5 git commands to generate.