diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 10:39:30 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 10:39:30 -0400 |
commit | 4c1423edfb036a416c642b39d76370e2f2405bb1 (patch) | |
tree | 951fcb2a5ee9e441f49814fca1fd60282f1702d9 /posix | |
parent | 158648c0bdda281e252a27c0200dd0ea6f4e0215 (diff) | |
download | glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.gz glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.bz2 glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.zip |
Fix typos in comments.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/spawn.h | 6 | ||||
-rw-r--r-- | posix/unistd.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/posix/spawn.h b/posix/spawn.h index 85ac69bf44..3eefa0fadc 100644 --- a/posix/spawn.h +++ b/posix/spawn.h @@ -1,5 +1,5 @@ /* Definitions for POSIX spawn interface. - Copyright (C) 2000, 2003, 2004, 2009 Free Software Foundation, Inc. + Copyright (C) 2000, 2003, 2004, 2009, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -67,7 +67,7 @@ __BEGIN_DECLS /* Spawn a new process executing PATH with the attributes describes in *ATTRP. Before running the process perform the actions described in FILE-ACTIONS. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int posix_spawn (pid_t *__restrict __pid, __const char *__restrict __path, @@ -79,7 +79,7 @@ extern int posix_spawn (pid_t *__restrict __pid, /* Similar to `posix_spawn' but search for FILE in the PATH. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int posix_spawnp (pid_t *__pid, __const char *__file, __const posix_spawn_file_actions_t *__file_actions, diff --git a/posix/unistd.h b/posix/unistd.h index 5ebcaf18ee..e73673121e 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2009, 2010 Free Software Foundation, Inc. +/* Copyright (C) 1991-2009, 2010, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -863,7 +863,7 @@ extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW; /* Return the login name of the user. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern char *getlogin (void); #if defined __USE_REENTRANT || defined __USE_POSIX199506 @@ -871,7 +871,7 @@ extern char *getlogin (void); If it cannot be determined or some other error occurred, return the error code. Otherwise return 0. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1)); #endif |