mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(thread): clean up function signatures in headers
This commit is contained in:
parent
3989b1da28
commit
4dbfb0b3be
3 changed files with 6 additions and 6 deletions
|
|
@ -23,8 +23,8 @@ class SCritSect {
|
||||||
// Member functions
|
// Member functions
|
||||||
SCritSect();
|
SCritSect();
|
||||||
~SCritSect();
|
~SCritSect();
|
||||||
void Enter(void);
|
void Enter();
|
||||||
void Leave(void);
|
void Leave();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,9 @@
|
||||||
class SEvent : public SSyncObject {
|
class SEvent : public SSyncObject {
|
||||||
public:
|
public:
|
||||||
// Member functions
|
// Member functions
|
||||||
SEvent(int32_t manualReset, int32_t);
|
SEvent(int32_t manualReset, int32_t initialValue);
|
||||||
int32_t Reset(void);
|
int32_t Reset();
|
||||||
int32_t Set(void);
|
int32_t Set();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ class SSyncObject {
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
SSyncObject();
|
SSyncObject();
|
||||||
void Close(void);
|
void Close();
|
||||||
bool Valid();
|
bool Valid();
|
||||||
uint32_t Wait(uint32_t timeoutMs);
|
uint32_t Wait(uint32_t timeoutMs);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue