| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* 
 | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:31 -08:00
										 |  |  |  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Licensed under the GPL | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __USER_H__
 | 
					
						
							|  |  |  | #define __USER_H__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-11 18:39:18 -04:00
										 |  |  | #include "kern_constants.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-06 14:51:09 -07: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 01:26:47 -07:00
										 |  |  | /* This is to get size_t */ | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							| 
									
										
										
										
											2007-05-06 14:51:52 -07:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-16 01:26:47 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #include <stddef.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-06 14:51:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-10 22:53:31 -07:00
										 |  |  | extern void panic(const char *fmt, ...) | 
					
						
							|  |  |  | 	__attribute__ ((format (printf, 1, 2))); | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:31 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef UML_CONFIG_PRINTK
 | 
					
						
							| 
									
										
										
										
											2006-04-10 22:53:31 -07:00
										 |  |  | extern int printk(const char *fmt, ...) | 
					
						
							|  |  |  | 	__attribute__ ((format (printf, 1, 2))); | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:31 -08:00
										 |  |  | #else
 | 
					
						
							|  |  |  | static inline int printk(const char *fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern void schedule(void); | 
					
						
							|  |  |  | extern int in_aton(char *str); | 
					
						
							|  |  |  | extern int open_gdb_chan(void); | 
					
						
							| 
									
										
										
										
											2007-05-06 14:51:52 -07:00
										 |  |  | extern size_t strlcpy(char *, const char *, size_t); | 
					
						
							|  |  |  | extern size_t strlcat(char *, const char *, size_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |