diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-08-04 12:07:38 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-08-04 12:07:38 +0000 |
commit | 24d20469316b5a79ee1ec19da9e34384f8496c31 (patch) | |
tree | c653b57eeebdde422b2305b7bfe28b74e44d9134 | |
parent | 334b9a33a8adcddaf144e8285367c6753b7ab7ec (diff) |
2008-08-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
* include/pthread/pthreadtypes.h (__pthread_inheritsched): Remove
comma at end of enumeration.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | include/pthread/pthreadtypes.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-08-04 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * include/pthread/pthreadtypes.h (__pthread_inheritsched): Remove + comma at end of enumeration. + 2008-08-03 Samuel Thibault <samuel.thibault@ens-lyon.org> * Makefile (sysdeps_headers): Add spin-lock-inline.h. diff --git a/include/pthread/pthreadtypes.h b/include/pthread/pthreadtypes.h index d9c1c6b..471e08e 100644 --- a/include/pthread/pthreadtypes.h +++ b/include/pthread/pthreadtypes.h @@ -61,7 +61,7 @@ enum __pthread_inheritsched enum __pthread_contentionscope { __PTHREAD_SCOPE_SYSTEM = 0, - __PTHREAD_SCOPE_PROCESS, + __PTHREAD_SCOPE_PROCESS }; /* Possible values for the `detachstate' attribute. */ |