GUACAMOLE-1911: Fixed some typo mistakes ("desriptor", "proccess").

This commit is contained in:
Jimmy 2024-01-21 22:04:04 -08:00
parent 4ff54ad306
commit d381d59c2e
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ static int redirect_fd(int fd, int flags) {
/**
* Turns the current process into a daemon through a series of fork() calls.
* The standard I/O file desriptors for STDIN, STDOUT, and STDERR will be
* The standard I/O file descriptors for STDIN, STDOUT, and STDERR will be
* redirected to /dev/null, and the working directory is changed to root.
* Execution within the caller of this function will terminate before this
* function returns, while execution within the daemonized child process will
@ -560,7 +560,7 @@ int main(int argc, char* argv[]) {
/*
* FIXME: Clean up the proc map. This is not as straightforward as it
* might seem, since the detached connection threads will attempt to
* remove the connection proccesses from the map when they complete,
* remove the connection processes from the map when they complete,
* which will also happen upon shutdown. So there's a good chance that
* this map cleanup will happen at the same time as the thread cleanup.
* The map _does_ have locking mechanisms in place for ensuring thread

View File

@ -325,7 +325,7 @@ static ssize_t guac_socket_fd_write_handler(guac_socket* socket,
}
/**
* Waits for data on the underlying file desriptor of the given socket to
* Waits for data on the underlying file descriptor of the given socket to
* become available such that the next read operation will not block.
*
* @param socket