We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c5b1de commit c2bc15dCopy full SHA for c2bc15d
.vscode/settings.json
@@ -0,0 +1,3 @@
1
+{
2
+ "C_Cpp.errorSquiggles": "Disabled"
3
+}
pcb.h
@@ -0,0 +1,16 @@
+#ifndef PCB
+#define PCB
+
4
+#include <pthread.h>
5
6
+struct Process_Control_Block
7
8
+ int pid;
9
+ char *state;
10
+ int pLength;
11
+ int total_time_spent;
12
+ pthread_cond_t cond_var;
13
+ int virtual_runtime;
14
+};
15
16
+#endif
0 commit comments