libc: Let _SC_PAGESIZE return 4096 when CONFIG_MM_PGSIZE isn't defined
since most application doesn't expect the page size equals one Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
28027d0bee
commit
ee9787a254
@ -30,6 +30,12 @@
|
||||
#include <sched.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef CONFIG_MM_PGSIZE
|
||||
# define DEFAULT_MM_PGSIZE CONFIG_MM_PGSIZE
|
||||
#else
|
||||
# define DEFAULT_MM_PGSIZE 4096
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
@ -226,11 +232,7 @@ long sysconf(int name)
|
||||
return 1;
|
||||
|
||||
case _SC_PAGESIZE:
|
||||
#ifdef CONFIG_MM_PGSIZE
|
||||
return CONFIG_MM_PGSIZE;
|
||||
#else
|
||||
return 1;
|
||||
#endif
|
||||
return DEFAULT_MM_PGSIZE;
|
||||
|
||||
default:
|
||||
#if 0 /* Assume valid but not implemented for the time being */
|
||||
|
Loading…
Reference in New Issue
Block a user