summaryrefslogtreecommitdiff
path: root/src/gc/env/gcenv.sync.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gc/env/gcenv.sync.h')
-rw-r--r--src/gc/env/gcenv.sync.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gc/env/gcenv.sync.h b/src/gc/env/gcenv.sync.h
index 5e3486ae27..d6bee05a19 100644
--- a/src/gc/env/gcenv.sync.h
+++ b/src/gc/env/gcenv.sync.h
@@ -128,10 +128,11 @@ public:
class CLREventStatic
{
public:
- void CreateManualEvent(bool bInitialState);
- void CreateAutoEvent(bool bInitialState);
- void CreateOSManualEvent(bool bInitialState);
- void CreateOSAutoEvent(bool bInitialState);
+ bool CreateAutoEventNoThrow(bool bInitialState);
+ bool CreateManualEventNoThrow(bool bInitialState);
+ bool CreateOSAutoEventNoThrow(bool bInitialState);
+ bool CreateOSManualEventNoThrow(bool bInitialState);
+
void CloseEvent();
bool IsValid() const;
bool Set();