summaryrefslogtreecommitdiff
path: root/src/libbasic/include/basic/async.h
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-09-13 14:23:24 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-09-13 14:23:24 -0400
commite73c2368c9a9b41ac725a45a933cc038b8fe465c (patch)
treeb0e49269df65251ab9eb8893be1ed0cd9e893f2d /src/libbasic/include/basic/async.h
parentb3c36bc62472b56f30ef88b1e0532f83204c7c79 (diff)
./tools/notsd-move
Diffstat (limited to 'src/libbasic/include/basic/async.h')
-rw-r--r--src/libbasic/include/basic/async.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libbasic/include/basic/async.h b/src/libbasic/include/basic/async.h
new file mode 100644
index 0000000000..9bd13ff6e0
--- /dev/null
+++ b/src/libbasic/include/basic/async.h
@@ -0,0 +1,25 @@
+#pragma once
+
+/***
+ This file is part of systemd.
+
+ Copyright 2013 Lennart Poettering
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+int asynchronous_job(void* (*func)(void *p), void *arg);
+
+int asynchronous_sync(void);
+int asynchronous_close(int fd);