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:
Zebediah Figura 2021-03-18 00:41:24 -05:00 committed by Alexandre Julliard
parent 340cc46287
commit fe9e2f070b
2 changed files with 1 additions and 2 deletions

View File

@ -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 */

View File

@ -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 );