Revision dab2ed99 linux-user/syscall_defs.h

b/linux-user/syscall_defs.h
75 75
	int f_spare[6];
76 76
};
77 77

  
78
struct target_dirent {
79
	target_long	d_ino;
80
	target_long	d_off;
81
	unsigned short	d_reclen;
82
	char		d_name[256]; /* We must not include limits.h! */
83
};
84

  
85
struct target_dirent64 {
86
	uint64_t	d_ino;
87
	int64_t		d_off;
88
	unsigned short	d_reclen;
89
	unsigned char	d_type;
90
	char		d_name[256];
91
};
92

  
93

  
78 94
/* mostly generic signal stuff */
79 95
#define TARGET_SIG_DFL	((target_long)0)	/* default signal handling */
80 96
#define TARGET_SIG_IGN	((target_long)1)	/* ignore signal */

Also available in: Unified diff