Kernel/LibC: Make ino_t 32 bit integer
32 bit target could not use atomic ino_t when it was 32 bit. There isn't really any reason to have 64 bit ino_t as there aren't really filesystems with that large numbers :D
This commit is contained in:
@@ -98,7 +98,7 @@ __BEGIN_DECLS
|
||||
|
||||
#if !defined(__ino_t_defined) && (defined(__need_all_types) || defined(__need_ino_t))
|
||||
#define __ino_t_defined 1
|
||||
typedef unsigned long long ino_t;
|
||||
typedef unsigned int ino_t;
|
||||
#endif
|
||||
#undef __need_ino_t
|
||||
|
||||
|
||||
Reference in New Issue
Block a user