diff options
author | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
---|---|---|
committer | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
commit | 771465fed0cf50ee2dd790723245fc091699c324 (patch) | |
tree | d8c18d095a33fe7c4564bd90c5f313bb9e4057dd /pthread_attr_init.c | |
parent | 8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff) |
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'pthread_attr_init.c')
-rw-r--r-- | pthread_attr_init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pthread_attr_init.c b/pthread_attr_init.c index 08f9a41..6eab32a 100644 --- a/pthread_attr_init.c +++ b/pthread_attr_init.c @@ -39,7 +39,7 @@ int -pthread_attr_init(pthread_attr_t *attr) +pthread_attr_init (pthread_attr_t * attr) /* * ------------------------------------------------------ * DOCPUBLIC @@ -97,7 +97,7 @@ pthread_attr_init(pthread_attr_t *attr) attr_result->detachstate = PTHREAD_CREATE_JOINABLE; #if HAVE_SIGSET_T - memset(&(attr_result->sigmask), 0, sizeof(sigset_t)); + memset (&(attr_result->sigmask), 0, sizeof (sigset_t)); #endif /* HAVE_SIGSET_T */ /* @@ -115,4 +115,3 @@ pthread_attr_init(pthread_attr_t *attr) return 0; } - |