diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-22 17:15:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-22 17:15:35 +0000 |
commit | dc2f6455a41f635a6388c2ca4435ecc0d89251fd (patch) | |
tree | eacb4fa42c93b6c68e6f02e92676f3db29bf9211 | |
parent | c87b88077203fb8ef8f506aee309e99b33ee9ed2 (diff) | |
download | glibc-dc2f6455a41f635a6388c2ca4435ecc0d89251fd.tar.gz glibc-dc2f6455a41f635a6388c2ca4435ecc0d89251fd.tar.xz glibc-dc2f6455a41f635a6388c2ca4435ecc0d89251fd.zip |
Update.
2003-04-22 Ulrich Drepper <drepper@redhat.com> * semaphore.h: Fix typo in comment.
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/semaphore.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index d79514fc4b..e71869fc20 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2003-04-22 Ulrich Drepper <drepper@redhat.com> + + * semaphore.h: Fix typo in comment. + 2003-04-21 Ulrich Drepper <drepper@redhat.com> * sysdeps/pthread/sigfillset.c: New file. diff --git a/nptl/semaphore.h b/nptl/semaphore.h index b29f8c24c5..4f13725b32 100644 --- a/nptl/semaphore.h +++ b/nptl/semaphore.h @@ -39,7 +39,7 @@ extern int sem_init (sem_t *__sem, int __pshared, unsigned int __value) /* Free resources associated with semaphore object SEM. */ extern int sem_destroy (sem_t *__sem) __THROW; -/* Open a named semaphore NAME with open flaot OFLAG. */ +/* Open a named semaphore NAME with open flags OFLAG. */ extern sem_t *sem_open (__const char *__name, int __oflag, ...) __THROW; /* Close descriptor for named semaphore SEM. */ |