Port: removed unused clone() compat
authorMichael Jeanson <mjeanson@efficios.com>
Thu, 17 Sep 2015 16:47:00 +0000 (12:47 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 19 Oct 2015 04:14:08 +0000 (00:14 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/compat/Makefile.am
src/common/compat/clone.h [deleted file]

index 7cd3f91fc6f8530356cc860f79d88819cd97d880..9b1211701128bbc8335588e4ed9200a9bdc1fec4 100644 (file)
@@ -8,6 +8,6 @@ else
 COMPAT=compat-poll.c
 endif
 
 COMPAT=compat-poll.c
 endif
 
-libcompat_la_SOURCES = poll.h fcntl.h endian.h mman.h clone.h \
+libcompat_la_SOURCES = poll.h fcntl.h endian.h mman.h \
                socket.h compat-fcntl.c uuid.h tid.h \
                getenv.h string.h $(COMPAT)
                socket.h compat-fcntl.c uuid.h tid.h \
                getenv.h string.h $(COMPAT)
diff --git a/src/common/compat/clone.h b/src/common/compat/clone.h
deleted file mode 100644 (file)
index 581595b..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Copyright (C) 2011 - David Goulet <dgoulet@efficios.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License, version 2 only,
- * as published by the Free Software Foundation.
- *
- * This program 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 General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef _COMPAT_CLONE_H
-#define _COMPAT_CLONE_H
-
-#ifdef __linux__
-
-#include <sched.h>
-
-static inline
-pid_t lttng_clone_files(int (*fn)(void *), void *child_stack, void *arg)
-{
-       return clone(fn, child_stack, CLONE_FILES | SIGCHLD, arg);
-}
-
-#elif defined(__FreeBSD__)
-
-#include <unistd.h>
-
-static inline
-pid_t lttng_clone_files(int (*fn)(void *), void *child_stack, void *arg)
-{
-       pid_t pid;
-
-       pid = rfork(RFPROC | RFTHREAD);
-       if (pid == 0) {
-               /* child */
-               int ret;
-
-               ret = fn(arg);
-               exit(ret);
-       } else if (pid > 0) {
-               /* parent */
-               /*
-                * Just return, the caller will wait for the child.
-                */
-               return pid;
-       } else {
-               /* Error */
-               return pid;
-       }
-}
-
-#else
-#error "Please add support for your OS."
-#endif /* __linux__ , __FreeBSD__ */
-
-#endif /* _COMPAT_CLONE_H */
This page took 0.027482 seconds and 5 git commands to generate.