/* * This file is part of Jehanne. * * Copyright (C) 2015 Giacomo Tesio * * Jehanne 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. * * Jehanne 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 Jehanne. If not, see . */ #include #include int verbose = 1; int failOnTimeout(void *v, char *s) { if(strncmp(s, "alarm", 4) == 0){ if(verbose) print("%d: noted: %s\n", getpid(), s); print("FAIL: timeout\n"); exits("FAIL"); } return 0; } void main(void) { int64_t start, elapsed, wkup, res; int32_t sem = 0; semacquire(&sem, 0); alarm(40000); /* global timeout, FAIL if reached */ if (!atnotify(failOnTimeout, 1)){ fprint(2, "%r\n"); exits("atnotify fails"); } awake(80000); /* this will be handled by the kernel, see pexit */ /* verify that rendezvous are interrupted */ fprint(2, "verify that rendezvous are interrupted\n", elapsed); wkup = awake(1000); start = nsec(); res = (int64_t)rendezvous(&elapsed, (void*)0x12345); elapsed = (nsec() - start) / (1000 * 1000); if(verbose) fprint(2, "rendezvous interrupted, returned %#p, elapsed = %d ms\n", res, elapsed); if(!awakened(wkup) || elapsed < 900 || elapsed > 1300){ print("FAIL: rendezvous\n"); exits("FAIL"); } /* verify that tsemacquire are NOT interrupted */ fprint(2, "verify that tsemacquire are NOT interrupted\n", elapsed); wkup = awake(700); start = nsec(); res = tsemacquire(&sem, 1500); elapsed = (nsec() - start) / (1000 * 1000); if(verbose) fprint(2, "tsemacquire(&sem, 1500) returned %lld, elapsed = %d ms\n", res, elapsed); if(res != 0 || elapsed < 1300){ print("FAIL: tsemacquire\n"); exits("FAIL"); } /* verify that sleeps are NOT interrupted */ fprint(2, "verify that sleeps are NOT interrupted\n", elapsed); wkup = awake(700); start = nsec(); sleep(1500); elapsed = (nsec() - start) / (1000 * 1000); if(verbose) fprint(2, "sleep(1500), elapsed = %d ms\n", elapsed); if(elapsed < 1300){ print("FAIL: sleep\n"); exits("FAIL"); } /* verify that semacquires are interrupted */ /* MEMENTO: this requires deeper modifications to semacquire() in * 9/port/sysproc.c, but it will enable tsemacquire to be moved to * libc (one less syscall!) wkup = awake(1000); start = nsec(); if(verbose) print("semacquire(&sem, 1)...\n"); res = semacquire(&sem, 1); elapsed = (nsec() - start) / (1000 * 1000); if(verbose) print("semacquire(&sem, 1): returned %lld, elapsed = %d ms\n", res, elapsed); if(!awakened(wkup) || res != -1 || elapsed < 900 || elapsed > 1300){ print("FAIL: semacquire\n"); exits("FAIL"); } */ /* do not forgivewkp the awake(60000): the kernel must handle it */ print("PASS\n"); exits("PASS"); }