kernel: updated SyncRequest to take boolean thread wait result as a parameter
This commit is contained in:
parent
6e51c56fe4
commit
58a3adcdd2
5 changed files with 33 additions and 10 deletions
|
@ -24,8 +24,12 @@ public:
|
|||
Handle lock_thread; ///< Handle to thread that currently has mutex
|
||||
std::vector<Handle> waiting_threads; ///< Threads that are waiting for the mutex
|
||||
|
||||
/// Synchronize kernel object
|
||||
Result SyncRequest() {
|
||||
/**
|
||||
* Synchronize kernel object
|
||||
* @param wait Boolean wait set if current thread should wait as a result of sync operation
|
||||
* @return Result of operation, 0 on success, otherwise error code
|
||||
*/
|
||||
Result SyncRequest(bool* wait) {
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue