blob: 29c69b4e2ed98fac5b25160e4299a0160d093e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
1998-07-12 Ben Elliston <bje@cygnus.com>
* implement.h (_pthread_mutex_attr_t): Define this implementation
internal type. Application programmers only see a mutex attribute
object as a void pointer.
* pthread.h (pthread_mutexattr_t): Define this type.
(pthread_mutexattr_init): Add function prototype.
(pthread_mutexattr_destroy): Likewise.
(pthread_mutexattr_setpshared): Likewise.
(pthread_mutexattr_getpshared): Likewise.
(pthread_mutexattr_setprotocol): Likewise.
(pthread_mutexattr_getprotocol): Likewise.
(pthread_mutexattr_setprioceiling): Likewise.
(pthread_mutexattr_getprioceiling): Likewise.
(PTHREAD_PROCESS_PRIVATE): Define.
(PTHREAD_PROCESS_SHARED): Define.
* mutex.c (pthread_mutexattr_init): Implement.
(pthread_mutexattr_destroy): Implement.
(pthread_mutexattr_setprotocol): Implement.
(pthread_mutexattr_getprotocol): Likewise.
(pthread_mutexattr_setprioceiling): Likewise.
(pthread_mutexattr_getprioceiling): Likewise.
(pthread_mutexattr_setpshared): Likewise.
(pthread_mutexattr_getpshared): Likewise.
(insert_attr): New function; very preliminary implementation!
(is_attr): Likewise.
(remove_attr): Likewise.
Sat Jul 11 14:48:54 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* implement.h: Preliminary implementation specific defines.
* create.c (pthread_create): Preliminary implementation.
1998-07-11 Ben Elliston <bje@cygnus.com>
* sync.c (pthread_join): Implement.
* misc.c (pthread_equal): Likewise.
* pthread.h (pthread_join): Add function prototype.
(pthread_equal): Likewise.
1998-07-10 Ben Elliston <bje@cygnus.com>
* misc.c (pthread_self): Implement.
* exit.c (pthread_exit): Implement.
* pthread.h (pthread_exit): Add function prototype.
(pthread_self): Likewise.
(pthread_t): Define this type.
1998-07-09 Ben Elliston <bje@cygnus.com>
* create.c (pthread_create): A dummy stub right now.
* pthread.h (pthread_create): Add function prototype.
|