summaryrefslogtreecommitdiffstats
path: root/meta-moblin/packages/sreadahead/sreadahead-0.02/readahead_c.patch
blob: a65c1088f51ffc6797b637bd71a75e6719eb1866 (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
---
 readahead.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

Index: sreadahead-0.02/readahead.c
===================================================================
--- sreadahead-0.02.orig/readahead.c	2008-09-23 22:35:20.000000000 +0200
+++ sreadahead-0.02/readahead.c	2008-10-27 16:27:52.000000000 +0100
@@ -69,7 +69,11 @@ void *one_thread(void *ptr)
 int main(int argc, char **argv)
 {
 	FILE *file = fopen("/etc/readahead.packed", "r");
-	
+	if (!file) {
+		perror("Couldnt open /etc/readahead.packed");
+		return -errno;
+	}
+
 	daemon(0,0);
 	
 	total_files = fread(&files, sizeof(struct readahead), MAXR, file);
@@ -81,7 +85,6 @@ int main(int argc, char **argv)
 	pthread_create(&three, NULL, one_thread, NULL);
 	pthread_create(&four, NULL, one_thread, NULL);
 
-	printf("Waiting\n");
 	pthread_join(one, NULL);
 	pthread_join(two, NULL);
 	pthread_join(three, NULL);