1 | /* $Id: tstSems.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime Testcase - Simple Semaphore Smoke Test.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <iprt/semaphore.h>
|
---|
22 | #include <iprt/string.h>
|
---|
23 |
|
---|
24 | #include <stdio.h>
|
---|
25 | #include <stdlib.h>
|
---|
26 |
|
---|
27 |
|
---|
28 | int main()
|
---|
29 | {
|
---|
30 | RTSEMEVENTMULTI sem1;
|
---|
31 | RTSEMEVENTMULTI sem2;
|
---|
32 | strdup("asdfaasdfasdfasdfasdfasdf");
|
---|
33 | int rc = RTSemEventMultiCreate(&sem1);
|
---|
34 | strdup("asdfaasdfasdfasdfasdfasdf");
|
---|
35 | printf("rc=%d\n", rc);
|
---|
36 | if (!rc)
|
---|
37 | {
|
---|
38 | strdup("asdfaasdfasdfasdfasdfasdf");
|
---|
39 | rc = RTSemEventMultiCreate(&sem2);
|
---|
40 | strdup("asdfaasdfasdfasdfasdfasdf");
|
---|
41 | printf("rc=%d\n", rc);
|
---|
42 | }
|
---|
43 | strdup("asdfaasdfasdfasdfasdfasdf");
|
---|
44 | if (!rc)
|
---|
45 | {
|
---|
46 | rc = RTSemEventMultiReset(sem2);
|
---|
47 | printf("rc=%d\n", rc);
|
---|
48 | }
|
---|
49 | if (!rc)
|
---|
50 | {
|
---|
51 | rc = RTSemEventMultiReset(sem1);
|
---|
52 | printf("rc=%d\n", rc);
|
---|
53 | }
|
---|
54 | if (!rc)
|
---|
55 | {
|
---|
56 | rc = RTSemEventMultiSignal(sem1);
|
---|
57 | printf("rc=%d\n", rc);
|
---|
58 | }
|
---|
59 | if (!rc)
|
---|
60 | {
|
---|
61 | rc = RTSemEventMultiSignal(sem2);
|
---|
62 | printf("rc=%d\n", rc);
|
---|
63 | }
|
---|
64 | return !!rc;
|
---|
65 | }
|
---|
66 |
|
---|