server: Make pulse_event() static.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
340cc46287
commit
fe9e2f070b
|
@ -160,7 +160,7 @@ struct event *get_event_obj( struct process *process, obj_handle_t handle, unsig
|
|||
return (struct event *)get_handle_obj( process, handle, access, &event_ops );
|
||||
}
|
||||
|
||||
void pulse_event( struct event *event )
|
||||
static void pulse_event( struct event *event )
|
||||
{
|
||||
event->signaled = 1;
|
||||
/* wake up all waiters if manual reset, a single one otherwise */
|
||||
|
|
|
@ -215,7 +215,6 @@ extern struct keyed_event *create_keyed_event( struct object *root, const struct
|
|||
unsigned int attr, const struct security_descriptor *sd );
|
||||
extern struct event *get_event_obj( struct process *process, obj_handle_t handle, unsigned int access );
|
||||
extern struct keyed_event *get_keyed_event_obj( struct process *process, obj_handle_t handle, unsigned int access );
|
||||
extern void pulse_event( struct event *event );
|
||||
extern void set_event( struct event *event );
|
||||
extern void reset_event( struct event *event );
|
||||
|
||||
|
|
Loading…
Reference in New Issue