Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sysconf.c « arm « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fbbe31dcea1338b02798cc4483beb7e6192a915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* libc/sys/arm/sysconf.c - The sysconf function */

/* Copyright 2020, STMicroelectronics
 *
 * All rights reserved.
 *
 * Redistribution, modification, and use in source and binary forms is permitted
 * provided that the above copyright notice and following paragraph are
 * duplicated in all such forms.
 *
 * This file is distributed WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */

#include <unistd.h>
#include <errno.h>

long sysconf(int name)
{
  switch (name)
  {
  case _SC_PAGESIZE:
#ifdef SMALL_MEMORY
    return 128;
#else
    return 4096;
#endif

  default:
    errno = EINVAL;
    return -1;
  }
  return -1; /* Can't get here */
}