/* $Id$ */ /* * Copyright (C) 2002-2005 Novell/SUSE * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2 of the * License. */ #include #include #include #include #include #include #include #include static int gotsigusr1; void handler(int sig) { ++gotsigusr1; } int main(int argc, char *argv[]) { int fd, rc, pass; const char *data="hello world"; char buf[128]; sigset_t sigset; if (argc != 2){ fprintf(stderr, "usage: %s file\n", argv[0]); return 1; } if (signal(SIGUSR1, handler) == SIG_ERR){ fprintf(stderr, "FAIL: internal error signal failed - %s\n", strerror(errno)); return 1; } if (sigemptyset(&sigset) == -1) { perror ("FAIL: nullifying sigset"); return 1; } fd=open(argv[1], O_CREAT|O_EXCL|O_RDWR, S_IWUSR|S_IRUSR); if (fd == -1){ fprintf(stderr, "FAIL: create %s failed - %s\n", argv[1], strerror(errno)); return 1; } pass=1; nextpass: (void)lseek(fd, 0, SEEK_SET); rc=write(fd, data, strlen(data)); if (rc != strlen(data)){ fprintf(stderr, "FAIL: write failed - %s\n", strerror(errno)); return 1; } (void)lseek(fd, 0, SEEK_SET); rc=read(fd, buf, sizeof(buf)); if (rc != strlen(data)){ fprintf(stderr, "FAIL: read failed - %s\n", strerror(errno)); return 1; } if (memcmp(buf, data, strlen(data)) != 0){ fprintf(stderr, "FAIL: comparison failed - %s\n", strerror(errno)); return 1; } gotsigusr1=0; if (pass == 1){ while (!gotsigusr1){ (void)sigsuspend(&sigset); } pass++; goto nextpass; } printf("PASS\n"); return 0; }