chiark / gitweb /
util: make asynchronous_close() really work like an asynchronous version of safe_close()
authorLennart Poettering <lennart@poettering.net>
Thu, 21 Aug 2014 14:13:43 +0000 (16:13 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 21 Aug 2014 15:24:21 +0000 (17:24 +0200)
Save/restore errno, like we do in safe_close(). And don't fork a thread
if the parameter is already negative.

src/shared/async.c

index 3876deda70c9954eefa3c43ba5915b3471a4a48f..115901e637f18e532c381c1f40ceb3bcaff7ff2a 100644 (file)
@@ -73,7 +73,7 @@ int asynchronous_sync(void) {
 }
 
 static void *close_thread(void *p) {
-        safe_close(PTR_TO_INT(p));
+        assert_se(close_nointr(PTR_TO_INT(p)) != -EBADF);
         return NULL;
 }
 
@@ -86,9 +86,13 @@ int asynchronous_close(int fd) {
          * but it doesn't, so we work around it, and hide this as a
          * far away as we can. */
 
-        r = asynchronous_job(close_thread, INT_TO_PTR(fd));
-        if (r < 0)
-                safe_close(fd);
+        if (fd >= 0) {
+                PROTECT_ERRNO;
+
+                r = asynchronous_job(close_thread, INT_TO_PTR(fd));
+                if (r < 0)
+                         assert_se(close_nointr(fd) != -EBADF);
+        }
 
         return -1;
 }