In CBPaintText use the text size as returned by LB_GETTEXT. The size
[wine.git] / server / semaphore.c
blob1ccaeea03eb36ddafedd4ac2ccb33aa85e64043f
1 /*
2 * Server-side semaphore management
4 * Copyright (C) 1998 Alexandre Julliard
5 */
7 #include <assert.h>
8 #include <stdio.h>
9 #include <stdlib.h>
11 #include "winnt.h"
13 #include "handle.h"
14 #include "thread.h"
15 #include "request.h"
17 struct semaphore
19 struct object obj; /* object header */
20 unsigned int count; /* current count */
21 unsigned int max; /* maximum possible count */
24 static void semaphore_dump( struct object *obj, int verbose );
25 static int semaphore_signaled( struct object *obj, struct thread *thread );
26 static int semaphore_satisfied( struct object *obj, struct thread *thread );
28 static const struct object_ops semaphore_ops =
30 sizeof(struct semaphore), /* size */
31 semaphore_dump, /* dump */
32 add_queue, /* add_queue */
33 remove_queue, /* remove_queue */
34 semaphore_signaled, /* signaled */
35 semaphore_satisfied, /* satisfied */
36 NULL, /* get_poll_events */
37 NULL, /* poll_event */
38 no_get_fd, /* get_fd */
39 no_flush, /* flush */
40 no_get_file_info, /* get_file_info */
41 NULL, /* queue_async */
42 no_destroy /* destroy */
46 static struct semaphore *create_semaphore( const WCHAR *name, size_t len,
47 unsigned int initial, unsigned int max )
49 struct semaphore *sem;
51 if (!max || (initial > max))
53 set_error( STATUS_INVALID_PARAMETER );
54 return NULL;
56 if ((sem = create_named_object( &semaphore_ops, name, len )))
58 if (get_error() != STATUS_OBJECT_NAME_COLLISION)
60 /* initialize it if it didn't already exist */
61 sem->count = initial;
62 sem->max = max;
65 return sem;
68 static unsigned int release_semaphore( handle_t handle, unsigned int count )
70 struct semaphore *sem;
71 unsigned int prev = 0;
73 if ((sem = (struct semaphore *)get_handle_obj( current->process, handle,
74 SEMAPHORE_MODIFY_STATE, &semaphore_ops )))
76 prev = sem->count;
77 if (sem->count + count < sem->count || sem->count + count > sem->max)
79 set_error( STATUS_SEMAPHORE_LIMIT_EXCEEDED );
81 else if (sem->count)
83 /* there cannot be any thread waiting if the count is != 0 */
84 assert( !sem->obj.head );
85 sem->count += count;
87 else
89 sem->count = count;
90 wake_up( &sem->obj, count );
92 release_object( sem );
94 return prev;
97 static void semaphore_dump( struct object *obj, int verbose )
99 struct semaphore *sem = (struct semaphore *)obj;
100 assert( obj->ops == &semaphore_ops );
101 fprintf( stderr, "Semaphore count=%d max=%d ", sem->count, sem->max );
102 dump_object_name( &sem->obj );
103 fputc( '\n', stderr );
106 static int semaphore_signaled( struct object *obj, struct thread *thread )
108 struct semaphore *sem = (struct semaphore *)obj;
109 assert( obj->ops == &semaphore_ops );
110 return (sem->count > 0);
113 static int semaphore_satisfied( struct object *obj, struct thread *thread )
115 struct semaphore *sem = (struct semaphore *)obj;
116 assert( obj->ops == &semaphore_ops );
117 assert( sem->count );
118 sem->count--;
119 return 0; /* not abandoned */
122 /* create a semaphore */
123 DECL_HANDLER(create_semaphore)
125 struct semaphore *sem;
127 reply->handle = 0;
128 if ((sem = create_semaphore( get_req_data(), get_req_data_size(),
129 req->initial, req->max )))
131 reply->handle = alloc_handle( current->process, sem, SEMAPHORE_ALL_ACCESS, req->inherit );
132 release_object( sem );
136 /* open a handle to a semaphore */
137 DECL_HANDLER(open_semaphore)
139 reply->handle = open_object( get_req_data(), get_req_data_size(),
140 &semaphore_ops, req->access, req->inherit );
143 /* release a semaphore */
144 DECL_HANDLER(release_semaphore)
146 reply->prev_count = release_semaphore( req->handle, req->count );