~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/um/include/shared/os.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#define OS_ACC_R_OK    4       /* Test for read permission.  */
30
30
#define OS_ACC_RW_OK   (OS_ACC_W_OK | OS_ACC_R_OK) /* Test for RW permission */
31
31
 
 
32
#ifdef CONFIG_64BIT
 
33
#define OS_LIB_PATH     "/usr/lib64/"
 
34
#else
 
35
#define OS_LIB_PATH     "/usr/lib/"
 
36
#endif
 
37
 
32
38
/*
33
39
 * types taken from stat_file() in hostfs_user.c
34
40
 * (if they are wrong here, they are wrong there...).
238
244
extern void setup_machinename(char *machine_out);
239
245
extern void setup_hostinfo(char *buf, int len);
240
246
extern void os_dump_core(void) __attribute__ ((noreturn));
 
247
extern void um_early_printk(const char *s, unsigned int n);
241
248
 
242
249
/* time.c */
243
250
extern void idle_sleep(unsigned long long nsecs);