File tree 2 files changed +3
-4
lines changed
wpilibcExamples/src/main/cpp/examples/HAL/c
wpiutil/src/main/native/include/wpi
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ that want even more control over what code runs on their robot.
16
16
#include <stdio.h>
17
17
18
18
#include <hal/HAL.h>
19
- #include " wpi/Synchronization.h"
19
+ #include < wpi/Synchronization.h>
20
20
21
21
enum DriverStationMode {
22
22
DisabledMode ,
Original file line number Diff line number Diff line change @@ -58,8 +58,7 @@ constexpr int kHandleTypeUserBase = 80;
58
58
* @param initialState true to make the event initially in signaled state
59
59
* @return Event handle
60
60
*/
61
- WPI_EventHandle MakeEvent (bool manualReset = false ,
62
- bool initialState = false );
61
+ WPI_EventHandle MakeEvent (bool manualReset = false , bool initialState = false );
63
62
64
63
/* *
65
64
* Destroys an event. Destruction wakes up any waiters.
@@ -94,7 +93,7 @@ void ResetEvent(WPI_EventHandle handle);
94
93
* @return Semaphore handle
95
94
*/
96
95
WPI_SemaphoreHandle MakeSemaphore (int initialCount = 0 ,
97
- int maximumCount = INT_MAX);
96
+ int maximumCount = INT_MAX);
98
97
99
98
/* *
100
99
* Destroys a semaphore. Destruction wakes up any waiters.
You can’t perform that action at this time.
0 commit comments