2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-11-15 02:00:31 +01:00
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __USER_H__
|
|
|
|
#define __USER_H__
|
|
|
|
|
2007-11-15 02:00:31 +01:00
|
|
|
#include "uml-config.h"
|
|
|
|
|
2007-05-06 23:51:09 +02:00
|
|
|
/*
|
|
|
|
* The usual definition - copied here because the kernel provides its own,
|
|
|
|
* fancier, type-safe, definition. Using that one would require
|
|
|
|
* copying too much infrastructure for my taste, so userspace files
|
|
|
|
* get less checking than kernel files.
|
|
|
|
*/
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
|
2007-10-16 10:26:47 +02:00
|
|
|
/* This is to get size_t */
|
|
|
|
#ifdef __KERNEL__
|
2007-05-06 23:51:52 +02:00
|
|
|
#include <linux/types.h>
|
2007-10-16 10:26:47 +02:00
|
|
|
#else
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
2007-05-06 23:51:52 +02:00
|
|
|
|
2006-04-11 07:53:31 +02:00
|
|
|
extern void panic(const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 1, 2)));
|
2007-11-15 02:00:31 +01:00
|
|
|
|
|
|
|
#ifdef UML_CONFIG_PRINTK
|
2006-04-11 07:53:31 +02:00
|
|
|
extern int printk(const char *fmt, ...)
|
|
|
|
__attribute__ ((format (printf, 1, 2)));
|
2007-11-15 02:00:31 +01:00
|
|
|
#else
|
|
|
|
static inline int printk(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
extern void schedule(void);
|
|
|
|
extern int in_aton(char *str);
|
|
|
|
extern int open_gdb_chan(void);
|
2007-05-06 23:51:52 +02:00
|
|
|
extern size_t strlcpy(char *, const char *, size_t);
|
|
|
|
extern size_t strlcat(char *, const char *, size_t);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif
|