blob: 8c1caef5cd73e7d367d1af261a6137b98d59b4e7 (
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
|
/* vi: set sw=4 ts=4: */
/*
* Various system configuration helpers.
*
* Copyright (C) 2014 Bartosz Golaszewski <bartekgola@gmail.com>
*
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
*/
#include "libbb.h"
#if !defined(bb_arg_max)
unsigned FAST_FUNC bb_arg_max(void)
{
long r = sysconf(_SC_ARG_MAX);
/* I've seen a version of uclibc which returned -1.
* Guard about it, and also avoid insanely large values
*/
if ((unsigned long)r > 64*1024*1024)
r = 64*1024*1024;
return r;
}
#endif
/* Return the number of clock ticks per second. */
unsigned FAST_FUNC bb_clk_tck(void)
{
return sysconf(_SC_CLK_TCK);
}
|