mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
10 lines
205 B
C
10 lines
205 B
C
|
#include <sys/resource.h>
|
||
|
#include <stdio.h>
|
||
|
int main (void)
|
||
|
{
|
||
|
struct rlimit limit;
|
||
|
|
||
|
getrlimit (RLIMIT_STACK, &limit);
|
||
|
printf ("\nStack Limit = %ld and %ld max\n", limit.rlim_cur, limit.rlim_max);
|
||
|
}
|