2 * Server-side semaphore management
4 * Copyright (C) 1998 Alexandre Julliard
20 struct object obj
; /* object header */
21 unsigned int count
; /* current count */
22 unsigned int max
; /* maximum possible count */
25 static void semaphore_dump( struct object
*obj
, int verbose
);
26 static int semaphore_signaled( struct object
*obj
, struct thread
*thread
);
27 static int semaphore_satisfied( struct object
*obj
, struct thread
*thread
);
29 static const struct object_ops semaphore_ops
=
31 sizeof(struct semaphore
),
45 static struct semaphore
*create_semaphore( const WCHAR
*name
, size_t len
,
46 unsigned int initial
, unsigned int max
)
48 struct semaphore
*sem
;
50 if (!max
|| (initial
> max
))
52 set_error( ERROR_INVALID_PARAMETER
);
55 if ((sem
= create_named_object( &semaphore_ops
, name
, len
)))
57 if (get_error() != ERROR_ALREADY_EXISTS
)
59 /* initialize it if it didn't already exist */
67 static unsigned int release_semaphore( int handle
, unsigned int count
)
69 struct semaphore
*sem
;
70 unsigned int prev
= 0;
72 if ((sem
= (struct semaphore
*)get_handle_obj( current
->process
, handle
,
73 SEMAPHORE_MODIFY_STATE
, &semaphore_ops
)))
76 if (sem
->count
+ count
< sem
->count
|| sem
->count
+ count
> sem
->max
)
78 set_error( ERROR_TOO_MANY_POSTS
);
82 /* there cannot be any thread waiting if the count is != 0 */
83 assert( !sem
->obj
.head
);
89 wake_up( &sem
->obj
, count
);
91 release_object( sem
);
96 static void semaphore_dump( struct object
*obj
, int verbose
)
98 struct semaphore
*sem
= (struct semaphore
*)obj
;
99 assert( obj
->ops
== &semaphore_ops
);
100 fprintf( stderr
, "Semaphore count=%d max=%d ", sem
->count
, sem
->max
);
101 dump_object_name( &sem
->obj
);
102 fputc( '\n', stderr
);
105 static int semaphore_signaled( struct object
*obj
, struct thread
*thread
)
107 struct semaphore
*sem
= (struct semaphore
*)obj
;
108 assert( obj
->ops
== &semaphore_ops
);
109 return (sem
->count
> 0);
112 static int semaphore_satisfied( struct object
*obj
, struct thread
*thread
)
114 struct semaphore
*sem
= (struct semaphore
*)obj
;
115 assert( obj
->ops
== &semaphore_ops
);
116 assert( sem
->count
);
118 return 0; /* not abandoned */
121 /* create a semaphore */
122 DECL_HANDLER(create_semaphore
)
124 size_t len
= get_req_strlenW( req
->name
);
125 struct semaphore
*sem
;
128 if ((sem
= create_semaphore( req
->name
, len
, req
->initial
, req
->max
)))
130 req
->handle
= alloc_handle( current
->process
, sem
, SEMAPHORE_ALL_ACCESS
, req
->inherit
);
131 release_object( sem
);
135 /* open a handle to a semaphore */
136 DECL_HANDLER(open_semaphore
)
138 size_t len
= get_req_strlenW( req
->name
);
139 req
->handle
= open_object( req
->name
, len
, &semaphore_ops
, req
->access
, req
->inherit
);
142 /* release a semaphore */
143 DECL_HANDLER(release_semaphore
)
145 req
->prev_count
= release_semaphore( req
->handle
, req
->count
);