From f801968466fed39d50d410b30ac828c26722cc95 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 21 Sep 2012 20:52:23 +0200 Subject: journal: completely rework the mmap cache as I too dumb to actually understand it Instead of doing hand optimized fd bisect arrays just use plain old hashmaps. Now I can understand my own code again. Yay! As a side effect this should fix some bad memory accesses caused by accesses after mmap(), introduced in 189. --- src/core/service.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/core/service.c') diff --git a/src/core/service.c b/src/core/service.c index 7c79dcdd14..8d315c1f75 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -1829,7 +1829,6 @@ static int service_spawn( if (r < 0) goto fail; - if ((r = unit_watch_pid(UNIT(s), pid)) < 0) /* FIXME: we need to do something here */ goto fail; -- cgit v1.2.3-54-g00ecf