From 3a9241add947cb6d24b5de7a8927517426a78795 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 25 Aug 2012 14:25:22 -0500 Subject: Move commands into "posix", "lsb", and "other" menus/directories. --- toys/swapon.c | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 toys/swapon.c (limited to 'toys/swapon.c') diff --git a/toys/swapon.c b/toys/swapon.c deleted file mode 100644 index 16ce8d1f..00000000 --- a/toys/swapon.c +++ /dev/null @@ -1,37 +0,0 @@ -/* vi: set sw=4 ts=4: - * - * swapon.c - Enable region for swapping - * - * Copyright 2012 Elie De Brauwer - * - * Not in SUSv4. - -USE_SWAPON(NEWTOY(swapon, "<1>1p#<0>32767", TOYFLAG_BIN|TOYFLAG_NEEDROOT)) - -config SWAPON - bool "swapon" - default y - help - usage: swapon [-p priority] filename - - Enable swapping on a given device/file. -*/ - -#include "toys.h" - -DEFINE_GLOBALS( - long priority; -) - -#define TT this.swapon - -void swapon_main(void) -{ - int flags = 0; - - if (toys.optflags & 1) - flags = SWAP_FLAG_PREFER | (TT.priority << SWAP_FLAG_PRIO_SHIFT); - - if (swapon(*toys.optargs, flags)) - perror_exit("Couldn't swapon '%s'", *toys.optargs); -} -- cgit v1.2.3