1/** \file
2 *  \brief Simple sleep call
3 */
4
5/*
6 * Copyright (c) 2010-2011, ETH Zurich.
7 * All rights reserved.
8 *
9 * This file is distributed under the terms in the attached LICENSE file.
10 * If you do not find this file, copies can be found by writing to:
11 * ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
12 */
13
14#ifndef __SLEEP_H__
15#define __SLEEP_H__
16
17void sleep_init(void);
18void cycle_sleep(uint64_t cycles);
19void milli_sleep(uint64_t ms);
20
21#endif
22