aboutsummaryrefslogtreecommitdiff
path: root/sync/reader.c
blob: edecf568578cf41bd18419d0e81c231610c1755a (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>


int main(argc, argv)
int argc;
char **argv;
{
	int shmid, i, pid, id;
	char *mem, filename[50];
	FILE fd;
	timeval *s;

	if (argc != 1) {
		printf("usage: reader [id]\n");
		exit(1);
	}

	id = atoi(argv[1]);

	if (argc < 2) {
		printf("usage: sync [number readers] [number writers]\n");
		exit(1);
	}

	if ((shmid = shmget(52, 1<<14, IPC_CREAT | 0666)) == -1){
		perror("shmget: shmget failed");
		exit(1);
	}

	if ((mem = shmat(shmid, NULL, 0)) == (char *) -1) {
		perror("shmat");
		exit(1);
	}

	sprintf(filename, "reader.%d", id);
	
	fd = fopen(filename, "a");

	if (!fd) {
		perror("fopen: ");
		exit(1);
	}
	srand(time(NULL));

	while (1) {
		s->tv_sec = rand() % id;
		for (i = 0; i < 1<<14; i++) {
			fprintf(fd, "%c", *(mem + i));
			fflush(fd);
		}

		select(0, NULL, NULL, NULL, s);
	}
}