PKUOS - Pintos
Pintos source browser for PKU Operating System course
alarm-negative.c
Go to the documentation of this file.
1/** Tests timer_sleep(-100). Only requirement is that it not crash. */
2
3#include <stdio.h>
5#include "threads/malloc.h"
6#include "threads/synch.h"
7#include "threads/thread.h"
8#include "devices/timer.h"
9
10void
12{
13 timer_sleep (-100);
14 pass ();
15}
void test_alarm_negative(void)
Tests timer_sleep(-100).
void pass(void)
Prints a message indicating the current test passed.
Definition: tests.c:98
void timer_sleep(int64_t ticks)
Sleeps for approximately TICKS timer ticks.
Definition: timer.c:90