Sponsored Content
Full Discussion: Array size
Top Forums Programming Array size Post 5916 by rwb1959 on Sunday 26th of August 2001 07:29:05 PM
Old 08-26-2001
limits on array sizes

The answer is No and Yes. Theoretically,
there is no limit. However, the kernel may be
configured to allow only a limited amount
of memory per process and/or user. You can find
out what the system resource limits are on your
particular UNIX system using the system
call "getrlimit()" (man section 2). The following
C program can be compiled and run as any ordinary
user...

================== SNIP ========================
/*
* Filename - getlimits.c
*
* Description - display system resource limits and
* test allocating large blocks of memory.
*
*/

#include <sys/time.h>
#include <sys/resource.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

main(int argc, char **argv)
{
struct rlimit rlim;
void *p;

getrlimit(RLIMIT_CPU, &rlim);
printf("CPU: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_FSIZE, &rlim);
printf("FSIZE: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_DATA, &rlim);
printf("DATA: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_STACK, &rlim);
printf("STACK: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_CORE, &rlim);
printf("CORE: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
#ifdef LINUX
getrlimit(RLIMIT_RSS, &rlim);
printf("RSS: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_NPROC, &rlim);
printf("NPROC: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
#else
getrlimit(RLIMIT_VMEM, &rlim);
printf("VMEM: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
getrlimit(RLIMIT_AS, &rlim);
printf("AS: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
#endif
getrlimit(RLIMIT_NOFILE, &rlim);
printf("NOFILE: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
#ifdef LINUX
getrlimit(RLIMIT_MEMLOCK, &rlim);
printf("MEMLOCK: cur - %ld max - %ld\n", rlim.rlim_cur, rlim.rlim_max);
#endif

if((p = malloc(100000000)) == NULL)
{
printf("malloc 100M failed\n");
}
else
{
printf("malloc 100M succeeded\n");
}
if(p) free(p);
if((p = malloc(500000000)) == NULL)
{
printf("malloc 500M failed\n");
}
else
{
printf("malloc 500M succeeded\n");
}
if(p) free(p);
return 0;
}

================== SNIP ========================

The output (on Linux) should look somthing like...

$ getlimits
CPU: cur - 2147483647 max - 2147483647
FSIZE: cur - 2147483647 max - 2147483647
DATA: cur - 2147483647 max - 2147483647
STACK: cur - 8388608 max - 2147483647
CORE: cur - 1024000000 max - 2147483647
RSS: cur - 2147483647 max - 2147483647
NPROC: cur - 2048 max - 2048
NOFILE: cur - 1024 max - 1024
MEMLOCK: cur - 2147483647 max - 2147483647
malloc 100M succeeded
malloc 500M succeeded
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

MAX SIZE ARRAY Can Hold it

Hi, Do anyone know what's the max size of array (in awk) can be store before hit any memory issue. Regards (3 Replies)
Discussion started by: epall
3 Replies

2. Shell Programming and Scripting

Size of an array in sh shell script

Is there a way to find out the size of an array in sh shell script? Thanks. (1 Reply)
Discussion started by: trivektor
1 Replies

3. Solaris

command to find out total size of a specific file size (spread over the server)

hi all, in my server there are some specific application files which are spread through out the server... these are spread in folders..sub-folders..chid folders... please help me, how can i find the total size of these specific files in the server... (3 Replies)
Discussion started by: abhinov
3 Replies

4. Programming

size of char array in c

i have to store a data more than 100000. i don't know the size of the data whether it may be 100000 or 1000000. so how can i define variable size; example char abc; but i don't know the size so how can i give array size?? in one sentence how can i give the array size dynamically so that i... (6 Replies)
Discussion started by: phani_sree
6 Replies

5. Programming

CHAR Array - stuffed with values - with more size than it holds

Hi All I am simulating a problem in the production where i faced a situation. Please find the following example program which i simulated. #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char str1; (3 Replies)
Discussion started by: dhanamurthy
3 Replies

6. Shell Programming and Scripting

The scripts not able to make the file to size 0, every times it go back to its original size

#!/bin/sh ########################################################################################################## #This script is being used for AOK application for cleaning up the .out files and zip it under logs directory. # IBM # Created #For pdocap201/pdoca202 .out files for AOK #1.... (0 Replies)
Discussion started by: mridul10_crj
0 Replies

7. Shell Programming and Scripting

Use Awk and Array to get total size of files

Hello all, I need to do scripts total up the size in selected extension file for example motion.mov and segmentation.avi is in Label Media. For file info.doc and calc.xls in Label Document. I need output will be like this: count 1 Media,,2 GB count 2 Document,,4 GB My problem is,... (16 Replies)
Discussion started by: sheikh76
16 Replies

8. UNIX for Advanced & Expert Users

Physical disk IO size smaller than fragment block filesystem size ?

Hello, in one default UFS filesystem we have 8K block size (bsize) and 1K fragmentsize (fsize). At this scenary I thought all "FileSytem IO" will be 8K (or greater) but never smaller than the fragment size (1K). If a UFS fragment/blocksize is allwasy several ADJACENTS sectors on disk (in a ... (4 Replies)
Discussion started by: rarino2
4 Replies

9. Programming

Php number array from max, min, step size mysql data

I want to create a form with data values in a dropdown list. The values in the dropdown list need to be generated on the fly from max, min and increment values contained in a mysql database. Hopefully this makes sense, I really have no idea where to start :confused: Thanks (6 Replies)
Discussion started by: barrydocks
6 Replies

10. Shell Programming and Scripting

Array size in C shell scripting

Hi, I would like to know how to define the size of the array in c shell scripting. (15 Replies)
Discussion started by: gopishrine
15 Replies
explain_getrlimit(3)					     Library Functions Manual					      explain_getrlimit(3)

NAME
explain_getrlimit - explain getrlimit(2) errors SYNOPSIS
#include <libexplain/getrlimit.h> const char *explain_getrlimit(int resource, struct rlimit *rlim); const char *explain_errno_getrlimit(int errnum, int resource, struct rlimit *rlim); void explain_message_getrlimit(char *message, int message_size, int resource, struct rlimit *rlim); void explain_message_errno_getrlimit(char *message, int message_size, int errnum, int resource, struct rlimit *rlim); DESCRIPTION
These functions may be used to obtain explanations for errors returned by the getrlimit(2) system call. explain_getrlimit const char *explain_getrlimit(int resource, struct rlimit *rlim); The explain_getrlimit function is used to obtain an explanation of an error returned by the getrlimit(2) system call. The least the mes- sage will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (getrlimit(resource, rlim) < 0) { fprintf(stderr, "%s ", explain_getrlimit(resource, rlim)); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_getrlimit_or_die(3) function. resource The original resource, exactly as passed to the getrlimit(2) system call. rlim The original rlim, exactly as passed to the getrlimit(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_errno_getrlimit const char *explain_errno_getrlimit(int errnum, int resource, struct rlimit *rlim); The explain_errno_getrlimit function is used to obtain an explanation of an error returned by the getrlimit(2) system call. The least the message will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (getrlimit(resource, rlim) < 0) { int err = errno; fprintf(stderr, "%s ", explain_errno_getrlimit(err, resource, rlim)); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_getrlimit_or_die(3) function. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. resource The original resource, exactly as passed to the getrlimit(2) system call. rlim The original rlim, exactly as passed to the getrlimit(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_message_getrlimit void explain_message_getrlimit(char *message, int message_size, int resource, struct rlimit *rlim); The explain_message_getrlimit function may be used to obtain an explanation of an error returned by the getrlimit(2) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (getrlimit(resource, rlim) < 0) { char message[3000]; explain_message_getrlimit(message, sizeof(message), resource, rlim); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_getrlimit_or_die(3) function. message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. resource The original resource, exactly as passed to the getrlimit(2) system call. rlim The original rlim, exactly as passed to the getrlimit(2) system call. explain_message_errno_getrlimit void explain_message_errno_getrlimit(char *message, int message_size, int errnum, int resource, struct rlimit *rlim); The explain_message_errno_getrlimit function may be used to obtain an explanation of an error returned by the getrlimit(2) system call. The least the message will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (getrlimit(resource, rlim) < 0) { int err = errno; char message[3000]; explain_message_errno_getrlimit(message, sizeof(message), err, resource, rlim); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_getrlimit_or_die(3) function. message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. resource The original resource, exactly as passed to the getrlimit(2) system call. rlim The original rlim, exactly as passed to the getrlimit(2) system call. SEE ALSO
getrlimit(2) get resource limits explain_getrlimit_or_die(3) get resource limits and report errors COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_getrlimit(3)
All times are GMT -4. The time now is 06:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy