diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-09-30 21:50:22 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-09-30 22:26:16 +0200 |
commit | 618234a5258768359cb1086b152c5f08aaf89754 (patch) | |
tree | 2fb6f9820ff043bc5a6a615d343bcfebf6a6cfad /src/libsystemd-network | |
parent | 94d75d6423f16f1fb66d214cb640ae3a114c5c58 (diff) |
basic: split out cpu set specific APIs into cpu-set-util.[ch]
Diffstat (limited to 'src/libsystemd-network')
-rw-r--r-- | src/libsystemd-network/test-pppoe.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libsystemd-network/test-pppoe.c b/src/libsystemd-network/test-pppoe.c index 6d71569a26..6ea460d9ac 100644 --- a/src/libsystemd-network/test-pppoe.c +++ b/src/libsystemd-network/test-pppoe.c @@ -19,19 +19,20 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <stdlib.h> #include <errno.h> -#include <unistd.h> - #include <linux/veth.h> #include <net/if.h> +#include <stdlib.h> +#include <unistd.h> +#include <sched.h> -#include "util.h" #include "sd-event.h" -#include "event-util.h" #include "sd-netlink.h" #include "sd-pppoe.h" + +#include "event-util.h" #include "process-util.h" +#include "util.h" static void pppoe_handler(sd_pppoe *ppp, int event, void *userdata) { static int pppoe_state = -1; |