diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-02-11 08:13:14 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2023-02-11 08:13:14 +0000 |
| commit | 2f8984613e17f9e5971ec338240b0bb6d2dd1cc6 (patch) | |
| tree | 4061a64dc5ee8c415ca249ec1852cfc666e1468b /src/minutils/s6-freeramdisk.c | |
| parent | 3caba3fd8f3825544c065ec62e4298c6edc76b28 (diff) | |
| download | s6-linux-utils-2f8984613e17f9e5971ec338240b0bb6d2dd1cc6.tar.gz | |
Code refactor; only s6-ps has remaining globals now
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/minutils/s6-freeramdisk.c')
| -rw-r--r-- | src/minutils/s6-freeramdisk.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/minutils/s6-freeramdisk.c b/src/minutils/s6-freeramdisk.c deleted file mode 100644 index adfb07c..0000000 --- a/src/minutils/s6-freeramdisk.c +++ /dev/null @@ -1,21 +0,0 @@ -/* ISC license. */ - -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <sys/mount.h> -#include <sys/ioctl.h> -#include <skalibs/strerr.h> - -#define USAGE "s6-freeramdisk ramdisk_device" - -int main (int argc, char const *const *argv) -{ - int fd ; - PROG = "s6-freeramdisk" ; - if (argc < 2) strerr_dieusage(100, USAGE) ; - fd = open(argv[1], O_RDWR) ; - if (fd < 0) strerr_diefu3sys(111, "open ", argv[1], " in read-write mode") ; - if (ioctl(fd, BLKFLSBUF) < 0) strerr_diefu2sys(111, "ioctl ", argv[1]) ; - return 0 ; -} |
