push 9758e6fe7ae8fbab538c98c718d6619029bb3457
[wine/hacks.git] / dlls / kernel32 / sync.c
blob52919042111579cbc7a04d73f57bae76e93f9cae
1 /*
2 * Kernel synchronization objects
4 * Copyright 1998 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <string.h>
25 #ifdef HAVE_UNISTD_H
26 # include <unistd.h>
27 #endif
28 #include <errno.h>
29 #include <stdarg.h>
30 #include <stdio.h>
32 #define NONAMELESSUNION
33 #define NONAMELESSSTRUCT
35 #include "ntstatus.h"
36 #define WIN32_NO_STATUS
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winerror.h"
40 #include "winnls.h"
41 #include "winternl.h"
42 #include "winioctl.h"
43 #include "ddk/wdm.h"
45 #include "wine/unicode.h"
46 #include "wine/winbase16.h"
47 #include "kernel_private.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(sync);
53 /* check if current version is NT or Win95 */
54 static inline int is_version_nt(void)
56 return !(GetVersion() & 0x80000000);
59 /* returns directory handle to \\BaseNamedObjects */
60 HANDLE get_BaseNamedObjects_handle(void)
62 static HANDLE handle = NULL;
63 static const WCHAR basenameW[] =
64 {'\\','B','a','s','e','N','a','m','e','d','O','b','j','e','c','t','s',0};
65 UNICODE_STRING str;
66 OBJECT_ATTRIBUTES attr;
68 if (!handle)
70 HANDLE dir;
72 RtlInitUnicodeString(&str, basenameW);
73 InitializeObjectAttributes(&attr, &str, 0, 0, NULL);
74 NtOpenDirectoryObject(&dir, DIRECTORY_CREATE_OBJECT|DIRECTORY_TRAVERSE,
75 &attr);
76 if (InterlockedCompareExchangePointer( (PVOID)&handle, dir, 0 ) != 0)
78 /* someone beat us here... */
79 CloseHandle( dir );
82 return handle;
85 /* helper for kernel32->ntdll timeout format conversion */
86 static inline PLARGE_INTEGER get_nt_timeout( PLARGE_INTEGER pTime, DWORD timeout )
88 if (timeout == INFINITE) return NULL;
89 pTime->QuadPart = (ULONGLONG)timeout * -10000;
90 return pTime;
93 /***********************************************************************
94 * Sleep (KERNEL32.@)
96 VOID WINAPI Sleep( DWORD timeout )
98 SleepEx( timeout, FALSE );
101 /******************************************************************************
102 * SleepEx (KERNEL32.@)
104 DWORD WINAPI SleepEx( DWORD timeout, BOOL alertable )
106 NTSTATUS status;
107 LARGE_INTEGER time;
109 status = NtDelayExecution( alertable, get_nt_timeout( &time, timeout ) );
110 if (status == STATUS_USER_APC) return WAIT_IO_COMPLETION;
111 return 0;
115 /***********************************************************************
116 * SwitchToThread (KERNEL32.@)
118 BOOL WINAPI SwitchToThread(void)
120 return (NtYieldExecution() != STATUS_NO_YIELD_PERFORMED);
124 /***********************************************************************
125 * WaitForSingleObject (KERNEL32.@)
127 DWORD WINAPI WaitForSingleObject( HANDLE handle, DWORD timeout )
129 return WaitForMultipleObjectsEx( 1, &handle, FALSE, timeout, FALSE );
133 /***********************************************************************
134 * WaitForSingleObjectEx (KERNEL32.@)
136 DWORD WINAPI WaitForSingleObjectEx( HANDLE handle, DWORD timeout,
137 BOOL alertable )
139 return WaitForMultipleObjectsEx( 1, &handle, FALSE, timeout, alertable );
143 /***********************************************************************
144 * WaitForMultipleObjects (KERNEL32.@)
146 DWORD WINAPI WaitForMultipleObjects( DWORD count, const HANDLE *handles,
147 BOOL wait_all, DWORD timeout )
149 return WaitForMultipleObjectsEx( count, handles, wait_all, timeout, FALSE );
153 /***********************************************************************
154 * WaitForMultipleObjectsEx (KERNEL32.@)
156 DWORD WINAPI WaitForMultipleObjectsEx( DWORD count, const HANDLE *handles,
157 BOOL wait_all, DWORD timeout,
158 BOOL alertable )
160 NTSTATUS status;
161 HANDLE hloc[MAXIMUM_WAIT_OBJECTS];
162 LARGE_INTEGER time;
163 unsigned int i;
165 if (count > MAXIMUM_WAIT_OBJECTS)
167 SetLastError(ERROR_INVALID_PARAMETER);
168 return WAIT_FAILED;
170 for (i = 0; i < count; i++)
172 if ((handles[i] == (HANDLE)STD_INPUT_HANDLE) ||
173 (handles[i] == (HANDLE)STD_OUTPUT_HANDLE) ||
174 (handles[i] == (HANDLE)STD_ERROR_HANDLE))
175 hloc[i] = GetStdHandle( HandleToULong(handles[i]) );
176 else
177 hloc[i] = handles[i];
179 /* yes, even screen buffer console handles are waitable, and are
180 * handled as a handle to the console itself !!
182 if (is_console_handle(hloc[i]))
184 if (!VerifyConsoleIoHandle(hloc[i]))
186 return FALSE;
188 hloc[i] = GetConsoleInputWaitHandle();
192 status = NtWaitForMultipleObjects( count, hloc, wait_all, alertable,
193 get_nt_timeout( &time, timeout ) );
195 if (HIWORD(status)) /* is it an error code? */
197 SetLastError( RtlNtStatusToDosError(status) );
198 status = WAIT_FAILED;
200 return status;
204 /***********************************************************************
205 * WaitForSingleObject (KERNEL.460)
207 DWORD WINAPI WaitForSingleObject16( HANDLE handle, DWORD timeout )
209 DWORD retval, mutex_count;
211 ReleaseThunkLock( &mutex_count );
212 retval = WaitForSingleObject( handle, timeout );
213 RestoreThunkLock( mutex_count );
214 return retval;
217 /***********************************************************************
218 * WaitForMultipleObjects (KERNEL.461)
220 DWORD WINAPI WaitForMultipleObjects16( DWORD count, const HANDLE *handles,
221 BOOL wait_all, DWORD timeout )
223 DWORD retval, mutex_count;
225 ReleaseThunkLock( &mutex_count );
226 retval = WaitForMultipleObjectsEx( count, handles, wait_all, timeout, FALSE );
227 RestoreThunkLock( mutex_count );
228 return retval;
231 /***********************************************************************
232 * WaitForMultipleObjectsEx (KERNEL.495)
234 DWORD WINAPI WaitForMultipleObjectsEx16( DWORD count, const HANDLE *handles,
235 BOOL wait_all, DWORD timeout, BOOL alertable )
237 DWORD retval, mutex_count;
239 ReleaseThunkLock( &mutex_count );
240 retval = WaitForMultipleObjectsEx( count, handles, wait_all, timeout, alertable );
241 RestoreThunkLock( mutex_count );
242 return retval;
245 /***********************************************************************
246 * RegisterWaitForSingleObject (KERNEL32.@)
248 BOOL WINAPI RegisterWaitForSingleObject(PHANDLE phNewWaitObject, HANDLE hObject,
249 WAITORTIMERCALLBACK Callback, PVOID Context,
250 ULONG dwMilliseconds, ULONG dwFlags)
252 NTSTATUS status;
254 TRACE("%p %p %p %p %d %d\n",
255 phNewWaitObject,hObject,Callback,Context,dwMilliseconds,dwFlags);
257 status = RtlRegisterWait( phNewWaitObject, hObject, Callback, Context, dwMilliseconds, dwFlags );
258 if (status != STATUS_SUCCESS)
260 SetLastError( RtlNtStatusToDosError(status) );
261 return FALSE;
263 return TRUE;
266 /***********************************************************************
267 * RegisterWaitForSingleObjectEx (KERNEL32.@)
269 HANDLE WINAPI RegisterWaitForSingleObjectEx( HANDLE hObject,
270 WAITORTIMERCALLBACK Callback, PVOID Context,
271 ULONG dwMilliseconds, ULONG dwFlags )
273 NTSTATUS status;
274 HANDLE hNewWaitObject;
276 TRACE("%p %p %p %d %d\n",
277 hObject,Callback,Context,dwMilliseconds,dwFlags);
279 status = RtlRegisterWait( &hNewWaitObject, hObject, Callback, Context, dwMilliseconds, dwFlags );
280 if (status != STATUS_SUCCESS)
282 SetLastError( RtlNtStatusToDosError(status) );
283 return NULL;
285 return hNewWaitObject;
288 /***********************************************************************
289 * UnregisterWait (KERNEL32.@)
291 BOOL WINAPI UnregisterWait( HANDLE WaitHandle )
293 NTSTATUS status;
295 TRACE("%p\n",WaitHandle);
297 status = RtlDeregisterWait( WaitHandle );
298 if (status != STATUS_SUCCESS)
300 SetLastError( RtlNtStatusToDosError(status) );
301 return FALSE;
303 return TRUE;
306 /***********************************************************************
307 * UnregisterWaitEx (KERNEL32.@)
309 BOOL WINAPI UnregisterWaitEx( HANDLE WaitHandle, HANDLE CompletionEvent )
311 FIXME("%p %p\n",WaitHandle, CompletionEvent);
312 return FALSE;
315 /***********************************************************************
316 * SignalObjectAndWait (KERNEL32.@)
318 * Allows to atomically signal any of the synchro objects (semaphore,
319 * mutex, event) and wait on another.
321 DWORD WINAPI SignalObjectAndWait( HANDLE hObjectToSignal, HANDLE hObjectToWaitOn,
322 DWORD dwMilliseconds, BOOL bAlertable )
324 NTSTATUS status;
325 LARGE_INTEGER timeout;
327 TRACE("%p %p %d %d\n", hObjectToSignal,
328 hObjectToWaitOn, dwMilliseconds, bAlertable);
330 status = NtSignalAndWaitForSingleObject( hObjectToSignal, hObjectToWaitOn, bAlertable,
331 get_nt_timeout( &timeout, dwMilliseconds ) );
332 if (HIWORD(status))
334 SetLastError( RtlNtStatusToDosError(status) );
335 status = WAIT_FAILED;
337 return status;
340 /***********************************************************************
341 * InitializeCriticalSection (KERNEL32.@)
343 * Initialise a critical section before use.
345 * PARAMS
346 * crit [O] Critical section to initialise.
348 * RETURNS
349 * Nothing. If the function fails an exception is raised.
351 void WINAPI InitializeCriticalSection( CRITICAL_SECTION *crit )
353 InitializeCriticalSectionEx( crit, 0, 0 );
356 /***********************************************************************
357 * InitializeCriticalSectionAndSpinCount (KERNEL32.@)
359 * Initialise a critical section with a spin count.
361 * PARAMS
362 * crit [O] Critical section to initialise.
363 * spincount [I] Number of times to spin upon contention.
365 * RETURNS
366 * Success: TRUE.
367 * Failure: Nothing. If the function fails an exception is raised.
369 * NOTES
370 * spincount is ignored on uni-processor systems.
372 BOOL WINAPI InitializeCriticalSectionAndSpinCount( CRITICAL_SECTION *crit, DWORD spincount )
374 return InitializeCriticalSectionEx( crit, spincount, 0 );
377 /***********************************************************************
378 * InitializeCriticalSectionEx (KERNEL32.@)
380 * Initialise a critical section with a spin count and flags.
382 * PARAMS
383 * crit [O] Critical section to initialise.
384 * spincount [I] Number of times to spin upon contention.
385 * flags [I] CRITICAL_SECTION_ flags from winbase.h.
387 * RETURNS
388 * Success: TRUE.
389 * Failure: Nothing. If the function fails an exception is raised.
391 * NOTES
392 * spincount is ignored on uni-processor systems.
394 BOOL WINAPI InitializeCriticalSectionEx( CRITICAL_SECTION *crit, DWORD spincount, DWORD flags )
396 NTSTATUS ret = RtlInitializeCriticalSectionEx( crit, spincount, flags );
397 if (ret) RtlRaiseStatus( ret );
398 return !ret;
401 /***********************************************************************
402 * MakeCriticalSectionGlobal (KERNEL32.@)
404 void WINAPI MakeCriticalSectionGlobal( CRITICAL_SECTION *crit )
406 /* let's assume that only one thread at a time will try to do this */
407 HANDLE sem = crit->LockSemaphore;
408 if (!sem) NtCreateSemaphore( &sem, SEMAPHORE_ALL_ACCESS, NULL, 0, 1 );
409 crit->LockSemaphore = ConvertToGlobalHandle( sem );
410 RtlFreeHeap( GetProcessHeap(), 0, crit->DebugInfo );
411 crit->DebugInfo = NULL;
415 /***********************************************************************
416 * ReinitializeCriticalSection (KERNEL32.@)
418 * Initialise an already used critical section.
420 * PARAMS
421 * crit [O] Critical section to initialise.
423 * RETURNS
424 * Nothing.
426 void WINAPI ReinitializeCriticalSection( CRITICAL_SECTION *crit )
428 if ( !crit->LockSemaphore )
429 RtlInitializeCriticalSection( crit );
433 /***********************************************************************
434 * UninitializeCriticalSection (KERNEL32.@)
436 * UnInitialise a critical section after use.
438 * PARAMS
439 * crit [O] Critical section to uninitialise (destroy).
441 * RETURNS
442 * Nothing.
444 void WINAPI UninitializeCriticalSection( CRITICAL_SECTION *crit )
446 RtlDeleteCriticalSection( crit );
450 /***********************************************************************
451 * CreateEventA (KERNEL32.@)
453 HANDLE WINAPI CreateEventA( SECURITY_ATTRIBUTES *sa, BOOL manual_reset,
454 BOOL initial_state, LPCSTR name )
456 WCHAR buffer[MAX_PATH];
458 if (!name) return CreateEventW( sa, manual_reset, initial_state, NULL );
460 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
462 SetLastError( ERROR_FILENAME_EXCED_RANGE );
463 return 0;
465 return CreateEventW( sa, manual_reset, initial_state, buffer );
469 /***********************************************************************
470 * CreateEventW (KERNEL32.@)
472 HANDLE WINAPI CreateEventW( SECURITY_ATTRIBUTES *sa, BOOL manual_reset,
473 BOOL initial_state, LPCWSTR name )
475 HANDLE ret;
476 UNICODE_STRING nameW;
477 OBJECT_ATTRIBUTES attr;
478 NTSTATUS status;
480 /* one buggy program needs this
481 * ("Van Dale Groot woordenboek der Nederlandse taal")
483 if (sa && IsBadReadPtr(sa,sizeof(SECURITY_ATTRIBUTES)))
485 ERR("Bad security attributes pointer %p\n",sa);
486 SetLastError( ERROR_INVALID_PARAMETER);
487 return 0;
490 attr.Length = sizeof(attr);
491 attr.RootDirectory = 0;
492 attr.ObjectName = NULL;
493 attr.Attributes = OBJ_OPENIF | ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
494 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
495 attr.SecurityQualityOfService = NULL;
496 if (name)
498 RtlInitUnicodeString( &nameW, name );
499 attr.ObjectName = &nameW;
500 attr.RootDirectory = get_BaseNamedObjects_handle();
503 status = NtCreateEvent( &ret, EVENT_ALL_ACCESS, &attr, manual_reset, initial_state );
504 if (status == STATUS_OBJECT_NAME_EXISTS)
505 SetLastError( ERROR_ALREADY_EXISTS );
506 else
507 SetLastError( RtlNtStatusToDosError(status) );
508 return ret;
512 /***********************************************************************
513 * CreateW32Event (KERNEL.457)
515 HANDLE WINAPI WIN16_CreateEvent( BOOL manual_reset, BOOL initial_state )
517 return CreateEventW( NULL, manual_reset, initial_state, NULL );
521 /***********************************************************************
522 * OpenEventA (KERNEL32.@)
524 HANDLE WINAPI OpenEventA( DWORD access, BOOL inherit, LPCSTR name )
526 WCHAR buffer[MAX_PATH];
528 if (!name) return OpenEventW( access, inherit, NULL );
530 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
532 SetLastError( ERROR_FILENAME_EXCED_RANGE );
533 return 0;
535 return OpenEventW( access, inherit, buffer );
539 /***********************************************************************
540 * OpenEventW (KERNEL32.@)
542 HANDLE WINAPI OpenEventW( DWORD access, BOOL inherit, LPCWSTR name )
544 HANDLE ret;
545 UNICODE_STRING nameW;
546 OBJECT_ATTRIBUTES attr;
547 NTSTATUS status;
549 if (!is_version_nt()) access = EVENT_ALL_ACCESS;
551 attr.Length = sizeof(attr);
552 attr.RootDirectory = 0;
553 attr.ObjectName = NULL;
554 attr.Attributes = inherit ? OBJ_INHERIT : 0;
555 attr.SecurityDescriptor = NULL;
556 attr.SecurityQualityOfService = NULL;
557 if (name)
559 RtlInitUnicodeString( &nameW, name );
560 attr.ObjectName = &nameW;
561 attr.RootDirectory = get_BaseNamedObjects_handle();
564 status = NtOpenEvent( &ret, access, &attr );
565 if (status != STATUS_SUCCESS)
567 SetLastError( RtlNtStatusToDosError(status) );
568 return 0;
570 return ret;
573 /***********************************************************************
574 * PulseEvent (KERNEL32.@)
576 BOOL WINAPI PulseEvent( HANDLE handle )
578 NTSTATUS status;
580 if ((status = NtPulseEvent( handle, NULL )))
581 SetLastError( RtlNtStatusToDosError(status) );
582 return !status;
586 /***********************************************************************
587 * SetW32Event (KERNEL.458)
588 * SetEvent (KERNEL32.@)
590 BOOL WINAPI SetEvent( HANDLE handle )
592 NTSTATUS status;
594 if ((status = NtSetEvent( handle, NULL )))
595 SetLastError( RtlNtStatusToDosError(status) );
596 return !status;
600 /***********************************************************************
601 * ResetW32Event (KERNEL.459)
602 * ResetEvent (KERNEL32.@)
604 BOOL WINAPI ResetEvent( HANDLE handle )
606 NTSTATUS status;
608 if ((status = NtResetEvent( handle, NULL )))
609 SetLastError( RtlNtStatusToDosError(status) );
610 return !status;
614 /***********************************************************************
615 * NOTE: The Win95 VWin32_Event routines given below are really low-level
616 * routines implemented directly by VWin32. The user-mode libraries
617 * implement Win32 synchronisation routines on top of these low-level
618 * primitives. We do it the other way around here :-)
621 /***********************************************************************
622 * VWin32_EventCreate (KERNEL.442)
624 HANDLE WINAPI VWin32_EventCreate(VOID)
626 HANDLE hEvent = CreateEventW( NULL, FALSE, 0, NULL );
627 return ConvertToGlobalHandle( hEvent );
630 /***********************************************************************
631 * VWin32_EventDestroy (KERNEL.443)
633 VOID WINAPI VWin32_EventDestroy(HANDLE event)
635 CloseHandle( event );
638 /***********************************************************************
639 * VWin32_EventWait (KERNEL.450)
641 VOID WINAPI VWin32_EventWait(HANDLE event)
643 DWORD mutex_count;
645 ReleaseThunkLock( &mutex_count );
646 WaitForSingleObject( event, INFINITE );
647 RestoreThunkLock( mutex_count );
650 /***********************************************************************
651 * VWin32_EventSet (KERNEL.451)
652 * KERNEL_479 (KERNEL.479)
654 VOID WINAPI VWin32_EventSet(HANDLE event)
656 SetEvent( event );
661 /***********************************************************************
662 * CreateMutexA (KERNEL32.@)
664 HANDLE WINAPI CreateMutexA( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCSTR name )
666 WCHAR buffer[MAX_PATH];
668 if (!name) return CreateMutexW( sa, owner, NULL );
670 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
672 SetLastError( ERROR_FILENAME_EXCED_RANGE );
673 return 0;
675 return CreateMutexW( sa, owner, buffer );
679 /***********************************************************************
680 * CreateMutexW (KERNEL32.@)
682 HANDLE WINAPI CreateMutexW( SECURITY_ATTRIBUTES *sa, BOOL owner, LPCWSTR name )
684 HANDLE ret;
685 UNICODE_STRING nameW;
686 OBJECT_ATTRIBUTES attr;
687 NTSTATUS status;
689 attr.Length = sizeof(attr);
690 attr.RootDirectory = 0;
691 attr.ObjectName = NULL;
692 attr.Attributes = OBJ_OPENIF | ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
693 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
694 attr.SecurityQualityOfService = NULL;
695 if (name)
697 RtlInitUnicodeString( &nameW, name );
698 attr.ObjectName = &nameW;
699 attr.RootDirectory = get_BaseNamedObjects_handle();
702 status = NtCreateMutant( &ret, MUTEX_ALL_ACCESS, &attr, owner );
703 if (status == STATUS_OBJECT_NAME_EXISTS)
704 SetLastError( ERROR_ALREADY_EXISTS );
705 else
706 SetLastError( RtlNtStatusToDosError(status) );
707 return ret;
711 /***********************************************************************
712 * OpenMutexA (KERNEL32.@)
714 HANDLE WINAPI OpenMutexA( DWORD access, BOOL inherit, LPCSTR name )
716 WCHAR buffer[MAX_PATH];
718 if (!name) return OpenMutexW( access, inherit, NULL );
720 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
722 SetLastError( ERROR_FILENAME_EXCED_RANGE );
723 return 0;
725 return OpenMutexW( access, inherit, buffer );
729 /***********************************************************************
730 * OpenMutexW (KERNEL32.@)
732 HANDLE WINAPI OpenMutexW( DWORD access, BOOL inherit, LPCWSTR name )
734 HANDLE ret;
735 UNICODE_STRING nameW;
736 OBJECT_ATTRIBUTES attr;
737 NTSTATUS status;
739 if (!is_version_nt()) access = MUTEX_ALL_ACCESS;
741 attr.Length = sizeof(attr);
742 attr.RootDirectory = 0;
743 attr.ObjectName = NULL;
744 attr.Attributes = inherit ? OBJ_INHERIT : 0;
745 attr.SecurityDescriptor = NULL;
746 attr.SecurityQualityOfService = NULL;
747 if (name)
749 RtlInitUnicodeString( &nameW, name );
750 attr.ObjectName = &nameW;
751 attr.RootDirectory = get_BaseNamedObjects_handle();
754 status = NtOpenMutant( &ret, access, &attr );
755 if (status != STATUS_SUCCESS)
757 SetLastError( RtlNtStatusToDosError(status) );
758 return 0;
760 return ret;
764 /***********************************************************************
765 * ReleaseMutex (KERNEL32.@)
767 BOOL WINAPI ReleaseMutex( HANDLE handle )
769 NTSTATUS status;
771 status = NtReleaseMutant(handle, NULL);
772 if (status != STATUS_SUCCESS)
774 SetLastError( RtlNtStatusToDosError(status) );
775 return FALSE;
777 return TRUE;
782 * Semaphores
786 /***********************************************************************
787 * CreateSemaphoreA (KERNEL32.@)
789 HANDLE WINAPI CreateSemaphoreA( SECURITY_ATTRIBUTES *sa, LONG initial, LONG max, LPCSTR name )
791 WCHAR buffer[MAX_PATH];
793 if (!name) return CreateSemaphoreW( sa, initial, max, NULL );
795 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
797 SetLastError( ERROR_FILENAME_EXCED_RANGE );
798 return 0;
800 return CreateSemaphoreW( sa, initial, max, buffer );
804 /***********************************************************************
805 * CreateSemaphoreW (KERNEL32.@)
807 HANDLE WINAPI CreateSemaphoreW( SECURITY_ATTRIBUTES *sa, LONG initial,
808 LONG max, LPCWSTR name )
810 HANDLE ret;
811 UNICODE_STRING nameW;
812 OBJECT_ATTRIBUTES attr;
813 NTSTATUS status;
815 attr.Length = sizeof(attr);
816 attr.RootDirectory = 0;
817 attr.ObjectName = NULL;
818 attr.Attributes = OBJ_OPENIF | ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
819 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
820 attr.SecurityQualityOfService = NULL;
821 if (name)
823 RtlInitUnicodeString( &nameW, name );
824 attr.ObjectName = &nameW;
825 attr.RootDirectory = get_BaseNamedObjects_handle();
828 status = NtCreateSemaphore( &ret, SEMAPHORE_ALL_ACCESS, &attr, initial, max );
829 if (status == STATUS_OBJECT_NAME_EXISTS)
830 SetLastError( ERROR_ALREADY_EXISTS );
831 else
832 SetLastError( RtlNtStatusToDosError(status) );
833 return ret;
837 /***********************************************************************
838 * OpenSemaphoreA (KERNEL32.@)
840 HANDLE WINAPI OpenSemaphoreA( DWORD access, BOOL inherit, LPCSTR name )
842 WCHAR buffer[MAX_PATH];
844 if (!name) return OpenSemaphoreW( access, inherit, NULL );
846 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
848 SetLastError( ERROR_FILENAME_EXCED_RANGE );
849 return 0;
851 return OpenSemaphoreW( access, inherit, buffer );
855 /***********************************************************************
856 * OpenSemaphoreW (KERNEL32.@)
858 HANDLE WINAPI OpenSemaphoreW( DWORD access, BOOL inherit, LPCWSTR name )
860 HANDLE ret;
861 UNICODE_STRING nameW;
862 OBJECT_ATTRIBUTES attr;
863 NTSTATUS status;
865 if (!is_version_nt()) access = SEMAPHORE_ALL_ACCESS;
867 attr.Length = sizeof(attr);
868 attr.RootDirectory = 0;
869 attr.ObjectName = NULL;
870 attr.Attributes = inherit ? OBJ_INHERIT : 0;
871 attr.SecurityDescriptor = NULL;
872 attr.SecurityQualityOfService = NULL;
873 if (name)
875 RtlInitUnicodeString( &nameW, name );
876 attr.ObjectName = &nameW;
877 attr.RootDirectory = get_BaseNamedObjects_handle();
880 status = NtOpenSemaphore( &ret, access, &attr );
881 if (status != STATUS_SUCCESS)
883 SetLastError( RtlNtStatusToDosError(status) );
884 return 0;
886 return ret;
890 /***********************************************************************
891 * ReleaseSemaphore (KERNEL32.@)
893 BOOL WINAPI ReleaseSemaphore( HANDLE handle, LONG count, LONG *previous )
895 NTSTATUS status = NtReleaseSemaphore( handle, count, (PULONG)previous );
896 if (status) SetLastError( RtlNtStatusToDosError(status) );
897 return !status;
902 * Timers
906 /***********************************************************************
907 * CreateWaitableTimerA (KERNEL32.@)
909 HANDLE WINAPI CreateWaitableTimerA( SECURITY_ATTRIBUTES *sa, BOOL manual, LPCSTR name )
911 WCHAR buffer[MAX_PATH];
913 if (!name) return CreateWaitableTimerW( sa, manual, NULL );
915 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
917 SetLastError( ERROR_FILENAME_EXCED_RANGE );
918 return 0;
920 return CreateWaitableTimerW( sa, manual, buffer );
924 /***********************************************************************
925 * CreateWaitableTimerW (KERNEL32.@)
927 HANDLE WINAPI CreateWaitableTimerW( SECURITY_ATTRIBUTES *sa, BOOL manual, LPCWSTR name )
929 HANDLE handle;
930 NTSTATUS status;
931 UNICODE_STRING nameW;
932 OBJECT_ATTRIBUTES attr;
934 attr.Length = sizeof(attr);
935 attr.RootDirectory = 0;
936 attr.ObjectName = NULL;
937 attr.Attributes = OBJ_OPENIF | ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
938 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
939 attr.SecurityQualityOfService = NULL;
940 if (name)
942 RtlInitUnicodeString( &nameW, name );
943 attr.ObjectName = &nameW;
944 attr.RootDirectory = get_BaseNamedObjects_handle();
947 status = NtCreateTimer(&handle, TIMER_ALL_ACCESS, &attr,
948 manual ? NotificationTimer : SynchronizationTimer);
949 if (status == STATUS_OBJECT_NAME_EXISTS)
950 SetLastError( ERROR_ALREADY_EXISTS );
951 else
952 SetLastError( RtlNtStatusToDosError(status) );
953 return handle;
957 /***********************************************************************
958 * OpenWaitableTimerA (KERNEL32.@)
960 HANDLE WINAPI OpenWaitableTimerA( DWORD access, BOOL inherit, LPCSTR name )
962 WCHAR buffer[MAX_PATH];
964 if (!name) return OpenWaitableTimerW( access, inherit, NULL );
966 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
968 SetLastError( ERROR_FILENAME_EXCED_RANGE );
969 return 0;
971 return OpenWaitableTimerW( access, inherit, buffer );
975 /***********************************************************************
976 * OpenWaitableTimerW (KERNEL32.@)
978 HANDLE WINAPI OpenWaitableTimerW( DWORD access, BOOL inherit, LPCWSTR name )
980 HANDLE handle;
981 UNICODE_STRING nameW;
982 OBJECT_ATTRIBUTES attr;
983 NTSTATUS status;
985 if (!is_version_nt()) access = TIMER_ALL_ACCESS;
987 attr.Length = sizeof(attr);
988 attr.RootDirectory = 0;
989 attr.ObjectName = NULL;
990 attr.Attributes = inherit ? OBJ_INHERIT : 0;
991 attr.SecurityDescriptor = NULL;
992 attr.SecurityQualityOfService = NULL;
993 if (name)
995 RtlInitUnicodeString( &nameW, name );
996 attr.ObjectName = &nameW;
997 attr.RootDirectory = get_BaseNamedObjects_handle();
1000 status = NtOpenTimer(&handle, access, &attr);
1001 if (status != STATUS_SUCCESS)
1003 SetLastError( RtlNtStatusToDosError(status) );
1004 return 0;
1006 return handle;
1010 /***********************************************************************
1011 * SetWaitableTimer (KERNEL32.@)
1013 BOOL WINAPI SetWaitableTimer( HANDLE handle, const LARGE_INTEGER *when, LONG period,
1014 PTIMERAPCROUTINE callback, LPVOID arg, BOOL resume )
1016 NTSTATUS status = NtSetTimer(handle, when, (PTIMER_APC_ROUTINE)callback,
1017 arg, resume, period, NULL);
1019 if (status != STATUS_SUCCESS)
1021 SetLastError( RtlNtStatusToDosError(status) );
1022 if (status != STATUS_TIMER_RESUME_IGNORED) return FALSE;
1024 return TRUE;
1028 /***********************************************************************
1029 * CancelWaitableTimer (KERNEL32.@)
1031 BOOL WINAPI CancelWaitableTimer( HANDLE handle )
1033 NTSTATUS status;
1035 status = NtCancelTimer(handle, NULL);
1036 if (status != STATUS_SUCCESS)
1038 SetLastError( RtlNtStatusToDosError(status) );
1039 return FALSE;
1041 return TRUE;
1045 /***********************************************************************
1046 * CreateTimerQueue (KERNEL32.@)
1048 HANDLE WINAPI CreateTimerQueue(void)
1050 HANDLE q;
1051 NTSTATUS status = RtlCreateTimerQueue(&q);
1053 if (status != STATUS_SUCCESS)
1055 SetLastError( RtlNtStatusToDosError(status) );
1056 return NULL;
1059 return q;
1063 /***********************************************************************
1064 * DeleteTimerQueueEx (KERNEL32.@)
1066 BOOL WINAPI DeleteTimerQueueEx(HANDLE TimerQueue, HANDLE CompletionEvent)
1068 NTSTATUS status = RtlDeleteTimerQueueEx(TimerQueue, CompletionEvent);
1070 if (status != STATUS_SUCCESS)
1072 SetLastError( RtlNtStatusToDosError(status) );
1073 return FALSE;
1076 return TRUE;
1079 /***********************************************************************
1080 * CreateTimerQueueTimer (KERNEL32.@)
1082 * Creates a timer-queue timer. This timer expires at the specified due
1083 * time (in ms), then after every specified period (in ms). When the timer
1084 * expires, the callback function is called.
1086 * RETURNS
1087 * nonzero on success or zero on failure
1089 BOOL WINAPI CreateTimerQueueTimer( PHANDLE phNewTimer, HANDLE TimerQueue,
1090 WAITORTIMERCALLBACK Callback, PVOID Parameter,
1091 DWORD DueTime, DWORD Period, ULONG Flags )
1093 NTSTATUS status = RtlCreateTimer(phNewTimer, TimerQueue, Callback,
1094 Parameter, DueTime, Period, Flags);
1096 if (status != STATUS_SUCCESS)
1098 SetLastError( RtlNtStatusToDosError(status) );
1099 return FALSE;
1102 return TRUE;
1105 /***********************************************************************
1106 * ChangeTimerQueueTimer (KERNEL32.@)
1108 * Changes the times at which the timer expires.
1110 * RETURNS
1111 * nonzero on success or zero on failure
1113 BOOL WINAPI ChangeTimerQueueTimer( HANDLE TimerQueue, HANDLE Timer,
1114 ULONG DueTime, ULONG Period )
1116 NTSTATUS status = RtlUpdateTimer(TimerQueue, Timer, DueTime, Period);
1118 if (status != STATUS_SUCCESS)
1120 SetLastError( RtlNtStatusToDosError(status) );
1121 return FALSE;
1124 return TRUE;
1127 /***********************************************************************
1128 * DeleteTimerQueueTimer (KERNEL32.@)
1130 * Cancels a timer-queue timer.
1132 * RETURNS
1133 * nonzero on success or zero on failure
1135 BOOL WINAPI DeleteTimerQueueTimer( HANDLE TimerQueue, HANDLE Timer,
1136 HANDLE CompletionEvent )
1138 NTSTATUS status = RtlDeleteTimer(TimerQueue, Timer, CompletionEvent);
1139 if (status != STATUS_SUCCESS)
1141 SetLastError( RtlNtStatusToDosError(status) );
1142 return FALSE;
1144 return TRUE;
1149 * Pipes
1153 /***********************************************************************
1154 * CreateNamedPipeA (KERNEL32.@)
1156 HANDLE WINAPI CreateNamedPipeA( LPCSTR name, DWORD dwOpenMode,
1157 DWORD dwPipeMode, DWORD nMaxInstances,
1158 DWORD nOutBufferSize, DWORD nInBufferSize,
1159 DWORD nDefaultTimeOut, LPSECURITY_ATTRIBUTES attr )
1161 WCHAR buffer[MAX_PATH];
1163 if (!name) return CreateNamedPipeW( NULL, dwOpenMode, dwPipeMode, nMaxInstances,
1164 nOutBufferSize, nInBufferSize, nDefaultTimeOut, attr );
1166 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
1168 SetLastError( ERROR_FILENAME_EXCED_RANGE );
1169 return INVALID_HANDLE_VALUE;
1171 return CreateNamedPipeW( buffer, dwOpenMode, dwPipeMode, nMaxInstances,
1172 nOutBufferSize, nInBufferSize, nDefaultTimeOut, attr );
1176 /***********************************************************************
1177 * CreateNamedPipeW (KERNEL32.@)
1179 HANDLE WINAPI CreateNamedPipeW( LPCWSTR name, DWORD dwOpenMode,
1180 DWORD dwPipeMode, DWORD nMaxInstances,
1181 DWORD nOutBufferSize, DWORD nInBufferSize,
1182 DWORD nDefaultTimeOut, LPSECURITY_ATTRIBUTES sa )
1184 HANDLE handle;
1185 UNICODE_STRING nt_name;
1186 OBJECT_ATTRIBUTES attr;
1187 DWORD access, options;
1188 BOOLEAN pipe_type, read_mode, non_block;
1189 NTSTATUS status;
1190 IO_STATUS_BLOCK iosb;
1191 LARGE_INTEGER timeout;
1193 TRACE("(%s, %#08x, %#08x, %d, %d, %d, %d, %p)\n",
1194 debugstr_w(name), dwOpenMode, dwPipeMode, nMaxInstances,
1195 nOutBufferSize, nInBufferSize, nDefaultTimeOut, sa );
1197 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
1199 SetLastError( ERROR_PATH_NOT_FOUND );
1200 return INVALID_HANDLE_VALUE;
1202 if (nt_name.Length >= MAX_PATH * sizeof(WCHAR) )
1204 SetLastError( ERROR_FILENAME_EXCED_RANGE );
1205 RtlFreeUnicodeString( &nt_name );
1206 return INVALID_HANDLE_VALUE;
1209 attr.Length = sizeof(attr);
1210 attr.RootDirectory = 0;
1211 attr.ObjectName = &nt_name;
1212 attr.Attributes = OBJ_CASE_INSENSITIVE |
1213 ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
1214 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
1215 attr.SecurityQualityOfService = NULL;
1217 switch(dwOpenMode & 3)
1219 case PIPE_ACCESS_INBOUND:
1220 options = FILE_PIPE_INBOUND;
1221 access = GENERIC_READ;
1222 break;
1223 case PIPE_ACCESS_OUTBOUND:
1224 options = FILE_PIPE_OUTBOUND;
1225 access = GENERIC_WRITE;
1226 break;
1227 case PIPE_ACCESS_DUPLEX:
1228 options = FILE_PIPE_FULL_DUPLEX;
1229 access = GENERIC_READ | GENERIC_WRITE;
1230 break;
1231 default:
1232 SetLastError( ERROR_INVALID_PARAMETER );
1233 return INVALID_HANDLE_VALUE;
1235 access |= SYNCHRONIZE;
1236 if (dwOpenMode & FILE_FLAG_WRITE_THROUGH) options |= FILE_WRITE_THROUGH;
1237 if (!(dwOpenMode & FILE_FLAG_OVERLAPPED)) options |= FILE_SYNCHRONOUS_IO_ALERT;
1238 pipe_type = (dwPipeMode & PIPE_TYPE_MESSAGE) ? TRUE : FALSE;
1239 read_mode = (dwPipeMode & PIPE_READMODE_MESSAGE) ? TRUE : FALSE;
1240 non_block = (dwPipeMode & PIPE_NOWAIT) ? TRUE : FALSE;
1241 if (nMaxInstances >= PIPE_UNLIMITED_INSTANCES) nMaxInstances = ~0U;
1243 timeout.QuadPart = (ULONGLONG)nDefaultTimeOut * -10000;
1245 SetLastError(0);
1247 status = NtCreateNamedPipeFile(&handle, access, &attr, &iosb, 0,
1248 FILE_OVERWRITE_IF, options, pipe_type,
1249 read_mode, non_block, nMaxInstances,
1250 nInBufferSize, nOutBufferSize, &timeout);
1252 RtlFreeUnicodeString( &nt_name );
1253 if (status)
1255 handle = INVALID_HANDLE_VALUE;
1256 SetLastError( RtlNtStatusToDosError(status) );
1258 return handle;
1262 /***********************************************************************
1263 * PeekNamedPipe (KERNEL32.@)
1265 BOOL WINAPI PeekNamedPipe( HANDLE hPipe, LPVOID lpvBuffer, DWORD cbBuffer,
1266 LPDWORD lpcbRead, LPDWORD lpcbAvail, LPDWORD lpcbMessage )
1268 FILE_PIPE_PEEK_BUFFER local_buffer;
1269 FILE_PIPE_PEEK_BUFFER *buffer = &local_buffer;
1270 IO_STATUS_BLOCK io;
1271 NTSTATUS status;
1273 if (cbBuffer && !(buffer = HeapAlloc( GetProcessHeap(), 0,
1274 FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data[cbBuffer] ))))
1276 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
1277 return FALSE;
1280 status = NtFsControlFile( hPipe, 0, NULL, NULL, &io, FSCTL_PIPE_PEEK, NULL, 0,
1281 buffer, FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data[cbBuffer] ) );
1282 if (!status)
1284 ULONG read_size = io.Information - FIELD_OFFSET( FILE_PIPE_PEEK_BUFFER, Data );
1285 if (lpcbAvail) *lpcbAvail = buffer->ReadDataAvailable;
1286 if (lpcbRead) *lpcbRead = read_size;
1287 if (lpcbMessage) *lpcbMessage = 0; /* FIXME */
1288 if (lpvBuffer) memcpy( lpvBuffer, buffer->Data, read_size );
1290 else SetLastError( RtlNtStatusToDosError(status) );
1292 if (buffer != &local_buffer) HeapFree( GetProcessHeap(), 0, buffer );
1293 return !status;
1296 /***********************************************************************
1297 * WaitNamedPipeA (KERNEL32.@)
1299 BOOL WINAPI WaitNamedPipeA (LPCSTR name, DWORD nTimeOut)
1301 WCHAR buffer[MAX_PATH];
1303 if (!name) return WaitNamedPipeW( NULL, nTimeOut );
1305 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
1307 SetLastError( ERROR_FILENAME_EXCED_RANGE );
1308 return 0;
1310 return WaitNamedPipeW( buffer, nTimeOut );
1314 /***********************************************************************
1315 * WaitNamedPipeW (KERNEL32.@)
1317 * Waits for a named pipe instance to become available
1319 * PARAMS
1320 * name [I] Pointer to a named pipe name to wait for
1321 * nTimeOut [I] How long to wait in ms
1323 * RETURNS
1324 * TRUE: Success, named pipe can be opened with CreateFile
1325 * FALSE: Failure, GetLastError can be called for further details
1327 BOOL WINAPI WaitNamedPipeW (LPCWSTR name, DWORD nTimeOut)
1329 static const WCHAR leadin[] = {'\\','?','?','\\','P','I','P','E','\\'};
1330 NTSTATUS status;
1331 UNICODE_STRING nt_name, pipe_dev_name;
1332 FILE_PIPE_WAIT_FOR_BUFFER *pipe_wait;
1333 IO_STATUS_BLOCK iosb;
1334 OBJECT_ATTRIBUTES attr;
1335 ULONG sz_pipe_wait;
1336 HANDLE pipe_dev;
1338 TRACE("%s 0x%08x\n",debugstr_w(name),nTimeOut);
1340 if (!RtlDosPathNameToNtPathName_U( name, &nt_name, NULL, NULL ))
1341 return FALSE;
1343 if (nt_name.Length >= MAX_PATH * sizeof(WCHAR) ||
1344 nt_name.Length < sizeof(leadin) ||
1345 strncmpiW( nt_name.Buffer, leadin, sizeof(leadin)/sizeof(WCHAR) != 0))
1347 RtlFreeUnicodeString( &nt_name );
1348 SetLastError( ERROR_PATH_NOT_FOUND );
1349 return FALSE;
1352 sz_pipe_wait = sizeof(*pipe_wait) + nt_name.Length - sizeof(leadin) - sizeof(WCHAR);
1353 if (!(pipe_wait = HeapAlloc( GetProcessHeap(), 0, sz_pipe_wait)))
1355 RtlFreeUnicodeString( &nt_name );
1356 SetLastError( ERROR_OUTOFMEMORY );
1357 return FALSE;
1360 pipe_dev_name.Buffer = nt_name.Buffer;
1361 pipe_dev_name.Length = sizeof(leadin);
1362 pipe_dev_name.MaximumLength = sizeof(leadin);
1363 InitializeObjectAttributes(&attr,&pipe_dev_name, OBJ_CASE_INSENSITIVE, NULL, NULL);
1364 status = NtOpenFile( &pipe_dev, FILE_READ_ATTRIBUTES, &attr,
1365 &iosb, FILE_SHARE_READ | FILE_SHARE_WRITE,
1366 FILE_SYNCHRONOUS_IO_NONALERT);
1367 if (status != ERROR_SUCCESS)
1369 SetLastError( ERROR_PATH_NOT_FOUND );
1370 return FALSE;
1373 pipe_wait->TimeoutSpecified = !(nTimeOut == NMPWAIT_USE_DEFAULT_WAIT);
1374 if (nTimeOut == NMPWAIT_WAIT_FOREVER)
1375 pipe_wait->Timeout.QuadPart = ((ULONGLONG)0x7fffffff << 32) | 0xffffffff;
1376 else
1377 pipe_wait->Timeout.QuadPart = (ULONGLONG)nTimeOut * -10000;
1378 pipe_wait->NameLength = nt_name.Length - sizeof(leadin);
1379 memcpy(pipe_wait->Name, nt_name.Buffer + sizeof(leadin)/sizeof(WCHAR),
1380 pipe_wait->NameLength);
1381 RtlFreeUnicodeString( &nt_name );
1383 status = NtFsControlFile( pipe_dev, NULL, NULL, NULL, &iosb, FSCTL_PIPE_WAIT,
1384 pipe_wait, sz_pipe_wait, NULL, 0 );
1386 HeapFree( GetProcessHeap(), 0, pipe_wait );
1387 NtClose( pipe_dev );
1389 if(status != STATUS_SUCCESS)
1391 SetLastError(RtlNtStatusToDosError(status));
1392 return FALSE;
1394 else
1395 return TRUE;
1399 /***********************************************************************
1400 * ConnectNamedPipe (KERNEL32.@)
1402 * Connects to a named pipe
1404 * Parameters
1405 * hPipe: A handle to a named pipe returned by CreateNamedPipe
1406 * overlapped: Optional OVERLAPPED struct
1408 * Return values
1409 * TRUE: Success
1410 * FALSE: Failure, GetLastError can be called for further details
1412 BOOL WINAPI ConnectNamedPipe(HANDLE hPipe, LPOVERLAPPED overlapped)
1414 NTSTATUS status;
1415 IO_STATUS_BLOCK status_block;
1416 LPVOID cvalue = NULL;
1418 TRACE("(%p,%p)\n", hPipe, overlapped);
1420 if(overlapped)
1422 overlapped->Internal = STATUS_PENDING;
1423 overlapped->InternalHigh = 0;
1424 if (((ULONG_PTR)overlapped->hEvent & 1) == 0) cvalue = overlapped;
1427 status = NtFsControlFile(hPipe, overlapped ? overlapped->hEvent : NULL, NULL, cvalue,
1428 overlapped ? (IO_STATUS_BLOCK *)overlapped : &status_block,
1429 FSCTL_PIPE_LISTEN, NULL, 0, NULL, 0);
1431 if (status == STATUS_SUCCESS) return TRUE;
1432 SetLastError( RtlNtStatusToDosError(status) );
1433 return FALSE;
1436 /***********************************************************************
1437 * DisconnectNamedPipe (KERNEL32.@)
1439 * Disconnects from a named pipe
1441 * Parameters
1442 * hPipe: A handle to a named pipe returned by CreateNamedPipe
1444 * Return values
1445 * TRUE: Success
1446 * FALSE: Failure, GetLastError can be called for further details
1448 BOOL WINAPI DisconnectNamedPipe(HANDLE hPipe)
1450 NTSTATUS status;
1451 IO_STATUS_BLOCK io_block;
1453 TRACE("(%p)\n",hPipe);
1455 status = NtFsControlFile(hPipe, 0, NULL, NULL, &io_block, FSCTL_PIPE_DISCONNECT,
1456 NULL, 0, NULL, 0);
1457 if (status == STATUS_SUCCESS) return TRUE;
1458 SetLastError( RtlNtStatusToDosError(status) );
1459 return FALSE;
1462 /***********************************************************************
1463 * TransactNamedPipe (KERNEL32.@)
1465 * BUGS
1466 * should be done as a single operation in the wineserver or kernel
1468 BOOL WINAPI TransactNamedPipe(
1469 HANDLE handle, LPVOID write_buf, DWORD write_size, LPVOID read_buf,
1470 DWORD read_size, LPDWORD bytes_read, LPOVERLAPPED overlapped)
1472 BOOL r;
1473 DWORD count;
1475 TRACE("%p %p %d %p %d %p %p\n",
1476 handle, write_buf, write_size, read_buf,
1477 read_size, bytes_read, overlapped);
1479 if (overlapped)
1481 FIXME("Doesn't support overlapped operation as yet\n");
1482 return FALSE;
1485 r = WriteFile(handle, write_buf, write_size, &count, NULL);
1486 if (r)
1487 r = ReadFile(handle, read_buf, read_size, bytes_read, NULL);
1489 return r;
1492 /***********************************************************************
1493 * GetNamedPipeInfo (KERNEL32.@)
1495 BOOL WINAPI GetNamedPipeInfo(
1496 HANDLE hNamedPipe, LPDWORD lpFlags, LPDWORD lpOutputBufferSize,
1497 LPDWORD lpInputBufferSize, LPDWORD lpMaxInstances)
1499 FILE_PIPE_LOCAL_INFORMATION fpli;
1500 IO_STATUS_BLOCK iosb;
1501 NTSTATUS status;
1503 status = NtQueryInformationFile(hNamedPipe, &iosb, &fpli, sizeof(fpli),
1504 FilePipeLocalInformation);
1505 if (status)
1507 SetLastError( RtlNtStatusToDosError(status) );
1508 return FALSE;
1511 if (lpFlags)
1513 *lpFlags = (fpli.NamedPipeEnd & FILE_PIPE_SERVER_END) ?
1514 PIPE_SERVER_END : PIPE_CLIENT_END;
1515 *lpFlags |= (fpli.NamedPipeType & FILE_PIPE_TYPE_MESSAGE) ?
1516 PIPE_TYPE_MESSAGE : PIPE_TYPE_BYTE;
1519 if (lpOutputBufferSize) *lpOutputBufferSize = fpli.OutboundQuota;
1520 if (lpInputBufferSize) *lpInputBufferSize = fpli.InboundQuota;
1521 if (lpMaxInstances) *lpMaxInstances = fpli.MaximumInstances;
1523 return TRUE;
1526 /***********************************************************************
1527 * GetNamedPipeHandleStateA (KERNEL32.@)
1529 BOOL WINAPI GetNamedPipeHandleStateA(
1530 HANDLE hNamedPipe, LPDWORD lpState, LPDWORD lpCurInstances,
1531 LPDWORD lpMaxCollectionCount, LPDWORD lpCollectDataTimeout,
1532 LPSTR lpUsername, DWORD nUsernameMaxSize)
1534 FIXME("%p %p %p %p %p %p %d\n",
1535 hNamedPipe, lpState, lpCurInstances,
1536 lpMaxCollectionCount, lpCollectDataTimeout,
1537 lpUsername, nUsernameMaxSize);
1539 return FALSE;
1542 /***********************************************************************
1543 * GetNamedPipeHandleStateW (KERNEL32.@)
1545 BOOL WINAPI GetNamedPipeHandleStateW(
1546 HANDLE hNamedPipe, LPDWORD lpState, LPDWORD lpCurInstances,
1547 LPDWORD lpMaxCollectionCount, LPDWORD lpCollectDataTimeout,
1548 LPWSTR lpUsername, DWORD nUsernameMaxSize)
1550 FIXME("%p %p %p %p %p %p %d\n",
1551 hNamedPipe, lpState, lpCurInstances,
1552 lpMaxCollectionCount, lpCollectDataTimeout,
1553 lpUsername, nUsernameMaxSize);
1555 return FALSE;
1558 /***********************************************************************
1559 * SetNamedPipeHandleState (KERNEL32.@)
1561 BOOL WINAPI SetNamedPipeHandleState(
1562 HANDLE hNamedPipe, LPDWORD lpMode, LPDWORD lpMaxCollectionCount,
1563 LPDWORD lpCollectDataTimeout)
1565 /* should be a fixme, but this function is called a lot by the RPC
1566 * runtime, and it slows down InstallShield a fair bit. */
1567 WARN("stub: %p %p/%d %p %p\n",
1568 hNamedPipe, lpMode, lpMode ? *lpMode : 0, lpMaxCollectionCount, lpCollectDataTimeout);
1569 return FALSE;
1572 /***********************************************************************
1573 * CallNamedPipeA (KERNEL32.@)
1575 BOOL WINAPI CallNamedPipeA(
1576 LPCSTR lpNamedPipeName, LPVOID lpInput, DWORD dwInputSize,
1577 LPVOID lpOutput, DWORD dwOutputSize,
1578 LPDWORD lpBytesRead, DWORD nTimeout)
1580 DWORD len;
1581 LPWSTR str = NULL;
1582 BOOL ret;
1584 TRACE("%s %p %d %p %d %p %d\n",
1585 debugstr_a(lpNamedPipeName), lpInput, dwInputSize,
1586 lpOutput, dwOutputSize, lpBytesRead, nTimeout);
1588 if( lpNamedPipeName )
1590 len = MultiByteToWideChar( CP_ACP, 0, lpNamedPipeName, -1, NULL, 0 );
1591 str = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1592 MultiByteToWideChar( CP_ACP, 0, lpNamedPipeName, -1, str, len );
1594 ret = CallNamedPipeW( str, lpInput, dwInputSize, lpOutput,
1595 dwOutputSize, lpBytesRead, nTimeout );
1596 if( lpNamedPipeName )
1597 HeapFree( GetProcessHeap(), 0, str );
1599 return ret;
1602 /***********************************************************************
1603 * CallNamedPipeW (KERNEL32.@)
1605 BOOL WINAPI CallNamedPipeW(
1606 LPCWSTR lpNamedPipeName, LPVOID lpInput, DWORD lpInputSize,
1607 LPVOID lpOutput, DWORD lpOutputSize,
1608 LPDWORD lpBytesRead, DWORD nTimeout)
1610 HANDLE pipe;
1611 BOOL ret;
1612 DWORD mode;
1614 TRACE("%s %p %d %p %d %p %d\n",
1615 debugstr_w(lpNamedPipeName), lpInput, lpInputSize,
1616 lpOutput, lpOutputSize, lpBytesRead, nTimeout);
1618 pipe = CreateFileW(lpNamedPipeName, GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
1619 if (pipe == INVALID_HANDLE_VALUE)
1621 ret = WaitNamedPipeW(lpNamedPipeName, nTimeout);
1622 if (!ret)
1623 return FALSE;
1624 pipe = CreateFileW(lpNamedPipeName, GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
1625 if (pipe == INVALID_HANDLE_VALUE)
1626 return FALSE;
1629 mode = PIPE_READMODE_MESSAGE;
1630 ret = SetNamedPipeHandleState(pipe, &mode, NULL, NULL);
1632 /* Currently SetNamedPipeHandleState() is a stub returning FALSE */
1633 if (ret) FIXME("Now that SetNamedPipeHandleState() is more than a stub, please update CallNamedPipeW\n");
1635 if (!ret)
1637 CloseHandle(pipe);
1638 return FALSE;
1641 ret = TransactNamedPipe(pipe, lpInput, lpInputSize, lpOutput, lpOutputSize, lpBytesRead, NULL);
1642 CloseHandle(pipe);
1643 if (!ret)
1644 return FALSE;
1646 return TRUE;
1649 /******************************************************************
1650 * CreatePipe (KERNEL32.@)
1653 BOOL WINAPI CreatePipe( PHANDLE hReadPipe, PHANDLE hWritePipe,
1654 LPSECURITY_ATTRIBUTES sa, DWORD size )
1656 static unsigned index /* = 0 */;
1657 WCHAR name[64];
1658 HANDLE hr, hw;
1659 unsigned in_index = index;
1660 UNICODE_STRING nt_name;
1661 OBJECT_ATTRIBUTES attr;
1662 NTSTATUS status;
1663 IO_STATUS_BLOCK iosb;
1664 LARGE_INTEGER timeout;
1666 *hReadPipe = *hWritePipe = INVALID_HANDLE_VALUE;
1668 attr.Length = sizeof(attr);
1669 attr.RootDirectory = 0;
1670 attr.ObjectName = &nt_name;
1671 attr.Attributes = OBJ_CASE_INSENSITIVE |
1672 ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
1673 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
1674 attr.SecurityQualityOfService = NULL;
1676 timeout.QuadPart = (ULONGLONG)NMPWAIT_USE_DEFAULT_WAIT * -10000;
1677 /* generate a unique pipe name (system wide) */
1680 static const WCHAR nameFmt[] = { '\\','?','?','\\','p','i','p','e',
1681 '\\','W','i','n','3','2','.','P','i','p','e','s','.','%','0','8','l',
1682 'u','.','%','0','8','u','\0' };
1684 snprintfW(name, sizeof(name) / sizeof(name[0]), nameFmt,
1685 GetCurrentProcessId(), ++index);
1686 RtlInitUnicodeString(&nt_name, name);
1687 status = NtCreateNamedPipeFile(&hr, GENERIC_READ | SYNCHRONIZE, &attr, &iosb,
1688 0, FILE_OVERWRITE_IF,
1689 FILE_SYNCHRONOUS_IO_ALERT | FILE_PIPE_INBOUND,
1690 FALSE, FALSE, FALSE,
1691 1, size, size, &timeout);
1692 if (status)
1694 SetLastError( RtlNtStatusToDosError(status) );
1695 hr = INVALID_HANDLE_VALUE;
1697 } while (hr == INVALID_HANDLE_VALUE && index != in_index);
1698 /* from completion sakeness, I think system resources might be exhausted before this happens !! */
1699 if (hr == INVALID_HANDLE_VALUE) return FALSE;
1701 status = NtOpenFile(&hw, GENERIC_WRITE | SYNCHRONIZE, &attr, &iosb, 0,
1702 FILE_SYNCHRONOUS_IO_ALERT | FILE_NON_DIRECTORY_FILE);
1704 if (status)
1706 SetLastError( RtlNtStatusToDosError(status) );
1707 NtClose(hr);
1708 return FALSE;
1711 *hReadPipe = hr;
1712 *hWritePipe = hw;
1713 return TRUE;
1717 /******************************************************************************
1718 * CreateMailslotA [KERNEL32.@]
1720 * See CreateMailslotW.
1722 HANDLE WINAPI CreateMailslotA( LPCSTR lpName, DWORD nMaxMessageSize,
1723 DWORD lReadTimeout, LPSECURITY_ATTRIBUTES sa )
1725 DWORD len;
1726 HANDLE handle;
1727 LPWSTR name = NULL;
1729 TRACE("%s %d %d %p\n", debugstr_a(lpName),
1730 nMaxMessageSize, lReadTimeout, sa);
1732 if( lpName )
1734 len = MultiByteToWideChar( CP_ACP, 0, lpName, -1, NULL, 0 );
1735 name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1736 MultiByteToWideChar( CP_ACP, 0, lpName, -1, name, len );
1739 handle = CreateMailslotW( name, nMaxMessageSize, lReadTimeout, sa );
1741 HeapFree( GetProcessHeap(), 0, name );
1743 return handle;
1747 /******************************************************************************
1748 * CreateMailslotW [KERNEL32.@]
1750 * Create a mailslot with specified name.
1752 * PARAMS
1753 * lpName [I] Pointer to string for mailslot name
1754 * nMaxMessageSize [I] Maximum message size
1755 * lReadTimeout [I] Milliseconds before read time-out
1756 * sa [I] Pointer to security structure
1758 * RETURNS
1759 * Success: Handle to mailslot
1760 * Failure: INVALID_HANDLE_VALUE
1762 HANDLE WINAPI CreateMailslotW( LPCWSTR lpName, DWORD nMaxMessageSize,
1763 DWORD lReadTimeout, LPSECURITY_ATTRIBUTES sa )
1765 HANDLE handle = INVALID_HANDLE_VALUE;
1766 OBJECT_ATTRIBUTES attr;
1767 UNICODE_STRING nameW;
1768 LARGE_INTEGER timeout;
1769 IO_STATUS_BLOCK iosb;
1770 NTSTATUS status;
1772 TRACE("%s %d %d %p\n", debugstr_w(lpName),
1773 nMaxMessageSize, lReadTimeout, sa);
1775 if (!RtlDosPathNameToNtPathName_U( lpName, &nameW, NULL, NULL ))
1777 SetLastError( ERROR_PATH_NOT_FOUND );
1778 return INVALID_HANDLE_VALUE;
1781 if (nameW.Length >= MAX_PATH * sizeof(WCHAR) )
1783 SetLastError( ERROR_FILENAME_EXCED_RANGE );
1784 RtlFreeUnicodeString( &nameW );
1785 return INVALID_HANDLE_VALUE;
1788 attr.Length = sizeof(attr);
1789 attr.RootDirectory = 0;
1790 attr.Attributes = OBJ_CASE_INSENSITIVE;
1791 attr.ObjectName = &nameW;
1792 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
1793 attr.SecurityQualityOfService = NULL;
1795 if (lReadTimeout != MAILSLOT_WAIT_FOREVER)
1796 timeout.QuadPart = (ULONGLONG) lReadTimeout * -10000;
1797 else
1798 timeout.QuadPart = ((LONGLONG)0x7fffffff << 32) | 0xffffffff;
1800 status = NtCreateMailslotFile( &handle, GENERIC_READ | SYNCHRONIZE, &attr,
1801 &iosb, 0, 0, nMaxMessageSize, &timeout );
1802 if (status)
1804 SetLastError( RtlNtStatusToDosError(status) );
1805 handle = INVALID_HANDLE_VALUE;
1808 RtlFreeUnicodeString( &nameW );
1809 return handle;
1813 /******************************************************************************
1814 * GetMailslotInfo [KERNEL32.@]
1816 * Retrieve information about a mailslot.
1818 * PARAMS
1819 * hMailslot [I] Mailslot handle
1820 * lpMaxMessageSize [O] Address of maximum message size
1821 * lpNextSize [O] Address of size of next message
1822 * lpMessageCount [O] Address of number of messages
1823 * lpReadTimeout [O] Address of read time-out
1825 * RETURNS
1826 * Success: TRUE
1827 * Failure: FALSE
1829 BOOL WINAPI GetMailslotInfo( HANDLE hMailslot, LPDWORD lpMaxMessageSize,
1830 LPDWORD lpNextSize, LPDWORD lpMessageCount,
1831 LPDWORD lpReadTimeout )
1833 FILE_MAILSLOT_QUERY_INFORMATION info;
1834 IO_STATUS_BLOCK iosb;
1835 NTSTATUS status;
1837 TRACE("%p %p %p %p %p\n",hMailslot, lpMaxMessageSize,
1838 lpNextSize, lpMessageCount, lpReadTimeout);
1840 status = NtQueryInformationFile( hMailslot, &iosb, &info, sizeof info,
1841 FileMailslotQueryInformation );
1843 if( status != STATUS_SUCCESS )
1845 SetLastError( RtlNtStatusToDosError(status) );
1846 return FALSE;
1849 if( lpMaxMessageSize )
1850 *lpMaxMessageSize = info.MaximumMessageSize;
1851 if( lpNextSize )
1852 *lpNextSize = info.NextMessageSize;
1853 if( lpMessageCount )
1854 *lpMessageCount = info.MessagesAvailable;
1855 if( lpReadTimeout )
1857 if (info.ReadTimeout.QuadPart == (((LONGLONG)0x7fffffff << 32) | 0xffffffff))
1858 *lpReadTimeout = MAILSLOT_WAIT_FOREVER;
1859 else
1860 *lpReadTimeout = info.ReadTimeout.QuadPart / -10000;
1862 return TRUE;
1866 /******************************************************************************
1867 * SetMailslotInfo [KERNEL32.@]
1869 * Set the read timeout of a mailslot.
1871 * PARAMS
1872 * hMailslot [I] Mailslot handle
1873 * dwReadTimeout [I] Timeout in milliseconds.
1875 * RETURNS
1876 * Success: TRUE
1877 * Failure: FALSE
1879 BOOL WINAPI SetMailslotInfo( HANDLE hMailslot, DWORD dwReadTimeout)
1881 FILE_MAILSLOT_SET_INFORMATION info;
1882 IO_STATUS_BLOCK iosb;
1883 NTSTATUS status;
1885 TRACE("%p %d\n", hMailslot, dwReadTimeout);
1887 if (dwReadTimeout != MAILSLOT_WAIT_FOREVER)
1888 info.ReadTimeout.QuadPart = (ULONGLONG)dwReadTimeout * -10000;
1889 else
1890 info.ReadTimeout.QuadPart = ((LONGLONG)0x7fffffff << 32) | 0xffffffff;
1891 status = NtSetInformationFile( hMailslot, &iosb, &info, sizeof info,
1892 FileMailslotSetInformation );
1893 if( status != STATUS_SUCCESS )
1895 SetLastError( RtlNtStatusToDosError(status) );
1896 return FALSE;
1898 return TRUE;
1902 /******************************************************************************
1903 * CreateIoCompletionPort (KERNEL32.@)
1905 HANDLE WINAPI CreateIoCompletionPort(HANDLE hFileHandle, HANDLE hExistingCompletionPort,
1906 ULONG_PTR CompletionKey, DWORD dwNumberOfConcurrentThreads)
1908 NTSTATUS status;
1909 HANDLE ret = 0;
1911 TRACE("(%p, %p, %08lx, %08x)\n",
1912 hFileHandle, hExistingCompletionPort, CompletionKey, dwNumberOfConcurrentThreads);
1914 if (hExistingCompletionPort && hFileHandle == INVALID_HANDLE_VALUE)
1916 SetLastError( ERROR_INVALID_PARAMETER);
1917 return NULL;
1920 if (hExistingCompletionPort)
1921 ret = hExistingCompletionPort;
1922 else
1924 status = NtCreateIoCompletion( &ret, IO_COMPLETION_ALL_ACCESS, NULL, dwNumberOfConcurrentThreads );
1925 if (status != STATUS_SUCCESS) goto fail;
1928 if (hFileHandle != INVALID_HANDLE_VALUE)
1930 FILE_COMPLETION_INFORMATION info;
1931 IO_STATUS_BLOCK iosb;
1933 info.CompletionPort = ret;
1934 info.CompletionKey = CompletionKey;
1935 status = NtSetInformationFile( hFileHandle, &iosb, &info, sizeof(info), FileCompletionInformation );
1936 if (status != STATUS_SUCCESS) goto fail;
1939 return ret;
1941 fail:
1942 if (ret && !hExistingCompletionPort)
1943 CloseHandle( ret );
1944 SetLastError( RtlNtStatusToDosError(status) );
1945 return 0;
1948 /******************************************************************************
1949 * GetQueuedCompletionStatus (KERNEL32.@)
1951 BOOL WINAPI GetQueuedCompletionStatus( HANDLE CompletionPort, LPDWORD lpNumberOfBytesTransferred,
1952 PULONG_PTR pCompletionKey, LPOVERLAPPED *lpOverlapped,
1953 DWORD dwMilliseconds )
1955 NTSTATUS status;
1956 IO_STATUS_BLOCK iosb;
1957 LARGE_INTEGER wait_time;
1959 TRACE("(%p,%p,%p,%p,%d)\n",
1960 CompletionPort,lpNumberOfBytesTransferred,pCompletionKey,lpOverlapped,dwMilliseconds);
1962 *lpOverlapped = NULL;
1964 status = NtRemoveIoCompletion( CompletionPort, pCompletionKey, (PULONG_PTR)lpOverlapped,
1965 &iosb, get_nt_timeout( &wait_time, dwMilliseconds ) );
1966 if (status == STATUS_SUCCESS)
1968 *lpNumberOfBytesTransferred = iosb.Information;
1969 return TRUE;
1972 SetLastError( RtlNtStatusToDosError(status) );
1973 return FALSE;
1977 /******************************************************************************
1978 * PostQueuedCompletionStatus (KERNEL32.@)
1980 BOOL WINAPI PostQueuedCompletionStatus( HANDLE CompletionPort, DWORD dwNumberOfBytes,
1981 ULONG_PTR dwCompletionKey, LPOVERLAPPED lpOverlapped)
1983 NTSTATUS status;
1985 TRACE("%p %d %08lx %p\n", CompletionPort, dwNumberOfBytes, dwCompletionKey, lpOverlapped );
1987 status = NtSetIoCompletion( CompletionPort, dwCompletionKey, (ULONG_PTR)lpOverlapped,
1988 STATUS_SUCCESS, dwNumberOfBytes );
1990 if (status == STATUS_SUCCESS) return TRUE;
1991 SetLastError( RtlNtStatusToDosError(status) );
1992 return FALSE;
1995 /******************************************************************************
1996 * BindIoCompletionCallback (KERNEL32.@)
1998 BOOL WINAPI BindIoCompletionCallback( HANDLE FileHandle, LPOVERLAPPED_COMPLETION_ROUTINE Function, ULONG Flags)
2000 NTSTATUS status;
2002 TRACE("(%p, %p, %d)\n", FileHandle, Function, Flags);
2004 status = RtlSetIoCompletionCallback( FileHandle, (PRTL_OVERLAPPED_COMPLETION_ROUTINE)Function, Flags );
2005 if (status == STATUS_SUCCESS) return TRUE;
2006 SetLastError( RtlNtStatusToDosError(status) );
2007 return FALSE;
2010 /******************************************************************************
2011 * CreateJobObjectW (KERNEL32.@)
2013 HANDLE WINAPI CreateJobObjectW( LPSECURITY_ATTRIBUTES attr, LPCWSTR name )
2015 FIXME("%p %s\n", attr, debugstr_w(name) );
2016 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2017 return 0;
2020 /******************************************************************************
2021 * CreateJobObjectA (KERNEL32.@)
2023 HANDLE WINAPI CreateJobObjectA( LPSECURITY_ATTRIBUTES attr, LPCSTR name )
2025 LPWSTR str = NULL;
2026 UINT len;
2027 HANDLE r;
2029 TRACE("%p %s\n", attr, debugstr_a(name) );
2031 if( name )
2033 len = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
2034 str = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
2035 if( !str )
2037 SetLastError( ERROR_OUTOFMEMORY );
2038 return 0;
2040 len = MultiByteToWideChar( CP_ACP, 0, name, -1, str, len );
2043 r = CreateJobObjectW( attr, str );
2045 HeapFree( GetProcessHeap(), 0, str );
2047 return r;
2050 /******************************************************************************
2051 * AssignProcessToJobObject (KERNEL32.@)
2053 BOOL WINAPI AssignProcessToJobObject( HANDLE hJob, HANDLE hProcess )
2055 FIXME("%p %p\n", hJob, hProcess);
2056 return TRUE;
2059 #ifdef __i386__
2061 /***********************************************************************
2062 * InterlockedCompareExchange (KERNEL32.@)
2064 /* LONG WINAPI InterlockedCompareExchange( PLONG dest, LONG xchg, LONG compare ); */
2065 __ASM_GLOBAL_FUNC(InterlockedCompareExchange,
2066 "movl 12(%esp),%eax\n\t"
2067 "movl 8(%esp),%ecx\n\t"
2068 "movl 4(%esp),%edx\n\t"
2069 "lock; cmpxchgl %ecx,(%edx)\n\t"
2070 "ret $12")
2072 /***********************************************************************
2073 * InterlockedExchange (KERNEL32.@)
2075 /* LONG WINAPI InterlockedExchange( PLONG dest, LONG val ); */
2076 __ASM_GLOBAL_FUNC(InterlockedExchange,
2077 "movl 8(%esp),%eax\n\t"
2078 "movl 4(%esp),%edx\n\t"
2079 "lock; xchgl %eax,(%edx)\n\t"
2080 "ret $8")
2082 /***********************************************************************
2083 * InterlockedExchangeAdd (KERNEL32.@)
2085 /* LONG WINAPI InterlockedExchangeAdd( PLONG dest, LONG incr ); */
2086 __ASM_GLOBAL_FUNC(InterlockedExchangeAdd,
2087 "movl 8(%esp),%eax\n\t"
2088 "movl 4(%esp),%edx\n\t"
2089 "lock; xaddl %eax,(%edx)\n\t"
2090 "ret $8")
2092 /***********************************************************************
2093 * InterlockedIncrement (KERNEL32.@)
2095 /* LONG WINAPI InterlockedIncrement( PLONG dest ); */
2096 __ASM_GLOBAL_FUNC(InterlockedIncrement,
2097 "movl 4(%esp),%edx\n\t"
2098 "movl $1,%eax\n\t"
2099 "lock; xaddl %eax,(%edx)\n\t"
2100 "incl %eax\n\t"
2101 "ret $4")
2103 /***********************************************************************
2104 * InterlockedDecrement (KERNEL32.@)
2106 __ASM_GLOBAL_FUNC(InterlockedDecrement,
2107 "movl 4(%esp),%edx\n\t"
2108 "movl $-1,%eax\n\t"
2109 "lock; xaddl %eax,(%edx)\n\t"
2110 "decl %eax\n\t"
2111 "ret $4")
2113 #else /* __i386__ */
2115 /***********************************************************************
2116 * InterlockedCompareExchange (KERNEL32.@)
2118 * Atomically swap one value with another.
2120 * PARAMS
2121 * dest [I/O] The value to replace
2122 * xchq [I] The value to be swapped
2123 * compare [I] The value to compare to dest
2125 * RETURNS
2126 * The resulting value of dest.
2128 * NOTES
2129 * dest is updated only if it is equal to compare, otherwise no swap is done.
2131 LONG WINAPI InterlockedCompareExchange( LONG volatile *dest, LONG xchg, LONG compare )
2133 return interlocked_cmpxchg( (int *)dest, xchg, compare );
2136 /***********************************************************************
2137 * InterlockedExchange (KERNEL32.@)
2139 * Atomically swap one value with another.
2141 * PARAMS
2142 * dest [I/O] The value to replace
2143 * val [I] The value to be swapped
2145 * RETURNS
2146 * The resulting value of dest.
2148 LONG WINAPI InterlockedExchange( LONG volatile *dest, LONG val )
2150 return interlocked_xchg( (int *)dest, val );
2153 /***********************************************************************
2154 * InterlockedExchangeAdd (KERNEL32.@)
2156 * Atomically add one value to another.
2158 * PARAMS
2159 * dest [I/O] The value to add to
2160 * incr [I] The value to be added
2162 * RETURNS
2163 * The resulting value of dest.
2165 LONG WINAPI InterlockedExchangeAdd( LONG volatile *dest, LONG incr )
2167 return interlocked_xchg_add( (int *)dest, incr );
2170 /***********************************************************************
2171 * InterlockedIncrement (KERNEL32.@)
2173 * Atomically increment a value.
2175 * PARAMS
2176 * dest [I/O] The value to increment
2178 * RETURNS
2179 * The resulting value of dest.
2181 LONG WINAPI InterlockedIncrement( LONG volatile *dest )
2183 return interlocked_xchg_add( (int *)dest, 1 ) + 1;
2186 /***********************************************************************
2187 * InterlockedDecrement (KERNEL32.@)
2189 * Atomically decrement a value.
2191 * PARAMS
2192 * dest [I/O] The value to decrement
2194 * RETURNS
2195 * The resulting value of dest.
2197 LONG WINAPI InterlockedDecrement( LONG volatile *dest )
2199 return interlocked_xchg_add( (int *)dest, -1 ) - 1;
2202 #endif /* __i386__ */