CS代考计算机代写 /* Tests timer_sleep(0), which should return immediately. */

/* Tests timer_sleep(0), which should return immediately. */

#include
#include “tests/threads/tests.h”
#include “threads/malloc.h”
#include “threads/synch.h”
#include “threads/thread.h”
#include “devices/timer.h”

void
test_alarm_zero (void)
{
timer_sleep (0);
pass ();
}