blob: 4cff19f6207ac2cafd8d0821baff32f7a94602a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dike9c8d6382007-11-14 17:00:31 -08002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
6#ifndef __USER_H__
7#define __USER_H__
8
Al Viro9e636452011-08-18 20:01:49 +01009#include <generated/asm-offsets.h>
Jeff Dike9c8d6382007-11-14 17:00:31 -080010
Jeff Dike24fa6c02007-05-06 14:51:09 -070011/*
12 * The usual definition - copied here because the kernel provides its own,
13 * fancier, type-safe, definition. Using that one would require
14 * copying too much infrastructure for my taste, so userspace files
15 * get less checking than kernel files.
16 */
17#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
18
Jeff Dike42daba32007-10-16 01:26:47 -070019/* This is to get size_t */
Richard Weinberger298e20b2015-05-31 19:50:57 +020020#ifndef __UM_HOST__
Paolo 'Blaisorblade' Giarrussoc2f239d2007-05-06 14:51:52 -070021#include <linux/types.h>
Jeff Dike42daba32007-10-16 01:26:47 -070022#else
23#include <stddef.h>
24#endif
Paolo 'Blaisorblade' Giarrussoc2f239d2007-05-06 14:51:52 -070025
Paolo 'Blaisorblade' Giarrusso9cf85b32006-04-10 22:53:31 -070026extern void panic(const char *fmt, ...)
27 __attribute__ ((format (printf, 1, 2)));
Jeff Dike9c8d6382007-11-14 17:00:31 -080028
Geert Uytterhoeven9429ec92012-08-16 20:15:05 +020029/* Requires preincluding include/linux/kern_levels.h */
30#define UM_KERN_EMERG KERN_EMERG
31#define UM_KERN_ALERT KERN_ALERT
32#define UM_KERN_CRIT KERN_CRIT
33#define UM_KERN_ERR KERN_ERR
34#define UM_KERN_WARNING KERN_WARNING
35#define UM_KERN_NOTICE KERN_NOTICE
36#define UM_KERN_INFO KERN_INFO
37#define UM_KERN_DEBUG KERN_DEBUG
38#define UM_KERN_CONT KERN_CONT
39
Jeff Dike9c8d6382007-11-14 17:00:31 -080040#ifdef UML_CONFIG_PRINTK
Paolo 'Blaisorblade' Giarrusso9cf85b32006-04-10 22:53:31 -070041extern int printk(const char *fmt, ...)
42 __attribute__ ((format (printf, 1, 2)));
Jeff Dike9c8d6382007-11-14 17:00:31 -080043#else
44static inline int printk(const char *fmt, ...)
45{
46 return 0;
47}
48#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern int in_aton(char *str);
Paolo 'Blaisorblade' Giarrussoc2f239d2007-05-06 14:51:52 -070051extern size_t strlcpy(char *, const char *, size_t);
52extern size_t strlcat(char *, const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Al Viro05c46db2011-08-18 20:04:59 +010054/* Copied from linux/compiler-gcc.h since we can't include it directly */
55#define barrier() __asm__ __volatile__("": : :"memory")
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#endif