FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Cplusplus_Thread_Lib/COperatingSystem.h at master · tdmm/Cplusplus_Thread_Lib · GitHub
tdmm
/
Cplusplus_Thread_Lib
Public
forked from
wyh267/Cplusplus_Thread_Lib
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Cplusplus_Thread_Lib
/
COperatingSystem.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
46 lines (26 loc) · 782 Bytes
Breadcrumbs
Cplusplus_Thread_Lib
/
COperatingSystem.h
Copy path
File metadata and controls
executable file
·
46 lines (26 loc) · 782 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
ifndef
_COperatingSystem_H_
#
define
_COperatingSystem_H_
/*
*******************************************************************************************
*
*File name: COperatingSystem.h
*Author: Wu Yinghao
*Version: 0.0.1
*Date: 2013.5.20
*E-Mail: wyh817@gmail.com
*Description: this file is base class of OSs
*
*******************************************************************************************
*/
class
CThread
;
class
COperatingSystem
{
public:
COperatingSystem
();
~COperatingSystem
();
//
create thread
virtual
bool
createThread
(CThread *
mThread
,
unsigned
long
stack_size=
8
*
1024
)=0;
//
system sleep function
virtual
void
sleepSec
(
unsigned
long
sec)=0;
protected:
CThread *p_thread;
};
#
endif
Back
|
FazBrowse Home
|
New Git URL