Sponsored Content
Top Forums Programming How to increase the size of the stack Post 8966 by anent on Friday 19th of October 2001 03:51:17 PM
Old 10-19-2001
hi jyotipg,
You can try this command on unix terminal on HP-UX system.

prompt>limit stacksize 100kb
now check.
prompt> limit
cputime unlimited
filesize unlimited
datasize unlimited
stacksize 100 kbytes
coredumpsize 200000 kbytes
descriptors 200 files
memoryuse unlimited

hope this might help you,
If you have any more, let me know.
Regards
Anent
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

increase size of /tmp

My /tmp is full, and the oracle installation is crashing. How can I increase the size of /tmp, even though I have allocated all the available disk space to other partitions? (2 Replies)
Discussion started by: pkappaz
2 Replies

2. HP-UX

increase size

Hi All, one of the mount point in Hp ux server has reached 95% its a data base file and can not be deleted. so i want to know how to increase the size of mount point i am new to unix ,please help me (1 Reply)
Discussion started by: jyoti
1 Replies

3. Solaris

how to increase the size of the allotment

Hi all, I have a 130gb HDD of which 95b is taken up by various partitions of windows xp... I partitioned my HDD and gave solaris 10gb of space, but now owing to some development stuff i need to increase the space!!! How do i do it!! Please note that i do have ~20gb of space left still...... (2 Replies)
Discussion started by: wrapster
2 Replies

4. UNIX for Dummies Questions & Answers

How to increase the filesystem size?

Hi.. I want to increase the file system size of any filesystem online, without using the Volume manager like LVMs, is it possible? & if yes then how? (3 Replies)
Discussion started by: Amol21
3 Replies

5. UNIX for Dummies Questions & Answers

Increase salt size

Unix protect its password by using salt It that mean larger the salt size the more secure? if the salt size increase greatly, will the password still able to be cracked? thank you for helping (1 Reply)
Discussion started by: cryogen
1 Replies

6. UNIX for Dummies Questions & Answers

Increase size to sd[b-c]

hi guys I am working on my vmware workstation. I have a /dev/sdb which is 5GB. I am using LVM. Now I increase /dev/sdb 2 more GB. fdisk -l shows 7 GB but pvscan still shows 5GB. how do I make my system recognize the new 7GB added and be able to add those to my physical volumen and... (1 Reply)
Discussion started by: kopper
1 Replies

7. Solaris

How to increase soft stack limit?

:wall:Dear Solaris 10 Specialists, I am having difficulty trying to increase the soft stack limit to 16384 for user george on this Solaris 10 SunFire Sparc server as follows: $ uname -a SunOS galactica 5.10 Generic_141444-09 sun4v sparc SUNW,SPARC-Enterprise-T5220 % id -p ... (3 Replies)
Discussion started by: gjackson123
3 Replies

8. Red Hat

Increase Font size

Hi friends I want increase font size in linux can anybody help me plese Example:this is my in put Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-LogVol00 18G 2.5G 14G 15% / /dev/sda2 ... (1 Reply)
Discussion started by: vasuibm
1 Replies

9. Red Hat

Increase the filesystem size

Hi I am using oracle linux 6.4. My hard drive capacity is 500 GB. my filesystem size onbly 50GB. I would like to extend my filesystem size to around 100GB. I tried many codes but still I am not able. this is the output of df -h : Filesystem Size Used Avail Use% Mounted on... (6 Replies)
Discussion started by: farshad
6 Replies

10. What is on Your Mind?

How Can We Increase the Size of Our Community?

Any suggestions on how to increase the number of posters and contributors? Please vote and write in your suggestions. Thank you! (72 Replies)
Discussion started by: Neo
72 Replies
sigstack(2)							System Calls Manual						       sigstack(2)

NAME
sigstack - Sets and gets signal stack context SYNOPSIS
#include <signal.h> int sigstack ( struct sigstack *instack, struct sigstack *outstack ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: sigstack(): XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Points to the structure describing the new signal stack. Points to the structure where the current signal stack state is stored. DESCRIPTION
The sigstack() function defines an alternate stack on which signals are to be processed. If the value of the instack parameter is nonzero, it points to a sigstack() structure, which has the following members: struct sigstack{ caddr_t ss_sp; int ss_onstack; } The value of instack->ss_sp specifies the stack pointer of the new signal stack. The value of instack->ss_onstack should be set to 1 if the process is currently running on that stack; otherwise, it should be 0 (zero). If the value of the instack parameter is 0 (that is, a null pointer), the signal stack state is not set. If the value of the outstack parameter is nonzero, it points to a sigstack() structure into which the sigstack() function stores the cur- rent signal stack state. If the value of the outstack parameter is 0 (zero), the previous signal stack state is not reported. When a signal occurs and its handler is to run on the signal stack, the system checks to see if the process is already running on that stack. If so, the process continues to run on that stack even after the handler returns. If not, the signal handler runs on the signal stack, and the original stack is restored when the handler returns. Use the sigaction() function to specify whether a given signal handler routine is to run on the signal stack. NOTES
A signal stack does not automatically increase in size as a normal stack does. If the stack overflows, unpredictable results can occur. The sigstack() function is scheduled to be withdrawn from a future version of the X/Open CAE Specification. When writing or rewriting por- table applications, use the sigaltstack() function instead of sigstack(). RETURN VALUES
Upon successful completion, a value of 0 (zero) is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error. ERRORS
The sigstack() function sets errno to the specified values for the following conditions: The instack or outstack parameter points outside of the address space of the process. RELATED INFORMATION
Functions: setjmp(3), sigaction(2), sigvec(2) Standards: standards(5) delim off sigstack(2)
All times are GMT -4. The time now is 06:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy