-
Notifications
You must be signed in to change notification settings - Fork 2
/
clk.c
45 lines (41 loc) · 1.05 KB
/
clk.c
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
/*
* This file is done for you.
* Probably you will not need to change anything.
* This file represents an emulated clock for simulation purpose only.
* It is not a real part of operating system!
*/
#include "Headers/headers.h"
int shmid;
/* Clear the resources before exit */
void cleanup(int signum)
{
shmctl(shmid, IPC_RMID, NULL);
printf("Clock terminating!\n");
exit(0);
}
/* This file represents the system clock for ease of calculations */
int main(int argc, char * argv[])
{
printf("Clock starting\n");
signal(SIGINT, cleanup);
int clk = 0;
//Create shared memory for one integer variable 4 bytes
shmid = shmget(SHKEY, 4, IPC_CREAT | 0644);
if ((long)shmid == -1)
{
perror("Error in creating shm!");
exit(-1);
}
int * shmaddr = (int *) shmat(shmid, (void *)0, 0);
if ((long)shmaddr == -1)
{
perror("Error in attaching the shm in clock!");
exit(-1);
}
*shmaddr = clk; /* initialize shared memory */
while (1)
{
sleep(1);
(*shmaddr)++;
}
}