1/*
2 * Copyright 2004-2015 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		J��r��me Duval, jerome.duval@free.fr
7 *		Marcus Overhagen, marcus@overhagen.de
8 *		J��r��me L��v��que, leveque.jerome@gmail.com
9 */
10
11
12#ifndef _UTIL_H_
13#define _UTIL_H_
14
15area_id alloc_mem(physical_entry *phy, addr_t *log, size_t size,
16	const char *name);
17cpu_status lock(void);
18void unlock(cpu_status status);
19
20#endif
21