blob: 8c1caef5cd73e7d367d1af261a6137b98d59b4e7 [file] [log] [blame]
Denys Vlasenkof92f1d02014-06-22 13:54:40 +02001/* vi: set sw=4 ts=4: */
2/*
3 * Various system configuration helpers.
4 *
5 * Copyright (C) 2014 Bartosz Golaszewski <bartekgola@gmail.com>
6 *
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */
9#include "libbb.h"
10
Denys Vlasenko04c14172014-11-26 15:17:59 +010011#if !defined(bb_arg_max)
Denys Vlasenkof92f1d02014-06-22 13:54:40 +020012unsigned FAST_FUNC bb_arg_max(void)
13{
Denys Vlasenkoca9c4652014-12-24 01:46:29 +010014 long r = sysconf(_SC_ARG_MAX);
15
16 /* I've seen a version of uclibc which returned -1.
17 * Guard about it, and also avoid insanely large values
18 */
19 if ((unsigned long)r > 64*1024*1024)
20 r = 64*1024*1024;
21
22 return r;
Denys Vlasenkof92f1d02014-06-22 13:54:40 +020023}
24#endif
Bartosz Golaszewski5d2e4092014-06-22 14:01:13 +020025
26/* Return the number of clock ticks per second. */
27unsigned FAST_FUNC bb_clk_tck(void)
28{
29 return sysconf(_SC_CLK_TCK);
30}