Commit fe9e2f07 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

server: Make pulse_event() static.

parent 340cc462
...@@ -160,7 +160,7 @@ struct event *get_event_obj( struct process *process, obj_handle_t handle, unsig ...@@ -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 ); 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; event->signaled = 1;
/* wake up all waiters if manual reset, a single one otherwise */ /* 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 ...@@ -215,7 +215,6 @@ extern struct keyed_event *create_keyed_event( struct object *root, const struct
unsigned int attr, const struct security_descriptor *sd ); 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 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 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 set_event( struct event *event );
extern void reset_event( struct event *event ); extern void reset_event( struct event *event );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment