Sponsored Content
Full Discussion: First steps in Perl
Top Forums Shell Programming and Scripting First steps in Perl Post 302266793 by tsurko on Thursday 11th of December 2008 04:35:47 AM
Old 12-11-2008
First of all thank you very much for your answers.
I do apologize for this thread - my mistake. I used another keywords and didn't find what I wanted. This won't happen again.
I know that maybe in Google there is plenty of information, but I respect the members of this forum and I wanted to hear their opinion.
Yet again I apologize for breaking the rules and I promise to do my best not to let this happen again.

P.S. Maybe it's a good idea to stick a thread with recommended online docs and books about different languages? Maybe there are more people, like me, looking for the right way in the jungle of documentation out there. This will be useful for both the users and administrators/moderators of this forum.
 

10 More Discussions You Might Find Interesting

1. Solaris

steps to ufsrestore

Hello Folks, I have to restore from remote tape sun solaris 10. It has to have mirror raid. I have to restore /,/usr, /var,/opt, /etc,/u01. Could you please give me detailed steps to do the above? I am new to solaris Thanks Ram (1 Reply)
Discussion started by: vr76413
1 Replies

2. IP Networking

Subnetting in 11 steps

As seen on Digg.com, here is my ip addressing article in full... Original Subnetting in 11 Steps article Subnetting in 11 Steps There are a few things that you will need to know first. I personally use 11 rules that I learned from Mike Vana. Below you will find the 11 rules as well as... (1 Reply)
Discussion started by: jking2100
1 Replies

3. HP-UX

modifying start up steps

I tried search and didn't see anything - if there is a thread please point me to it - I want to add a couple of statements to the start up steps basically to touch a file and set the owner & group on it. I want this to happen every start-up. I haven't had sysadm class since HP-UX 9.x and I... (1 Reply)
Discussion started by: LisaS
1 Replies

4. SCO

steps to add printer

hi, i want help plz i connect my xerox printer under sco os , someone can tell me by steps how i can add it ? what i need to do that ? (2 Replies)
Discussion started by: lid-j-one
2 Replies

5. Solaris

Required installation steps for perl 5.8.9 on Solaris 2.8 operating system

Hi Can any one suggest me the instalation guideline for perl 5.8.9 on UNIX/solaris 2.8 environment. Pooja (2 Replies)
Discussion started by: wadhwa.pooja
2 Replies

6. AIX

mksysb restoration steps

please provide me with the steps to restore from mksysb tape. i m using AIX 5.3 TL 7 (2 Replies)
Discussion started by: debasis9
2 Replies

7. Red Hat

Steps for register with RHN

Hi, Once we get a subscription (activation key), how to register a RHEL machine with RHN? Which port to be open on my RHEL machine? How exactly it will connect to Red Hat Network? Please give me some steps. Regards, Uday (2 Replies)
Discussion started by: uday123
2 Replies

8. Linux

Steps to install RHEL 6.0

I wanted clarity on the steps to install RHEL 6.0. The steps are as follows:- 1) Download the ISO image from the Red Hat site. 2) Burn it into DVD. 3) Download boot.iso from Red Hat (Is this step required or ISO image can install RHEL 6.0 by itself?) 4) Start installation from DVD. Request... (4 Replies)
Discussion started by: RHCE
4 Replies

9. Shell Programming and Scripting

Why doesn't my function go through all of it's steps?

Why doesn't the CheckJavas function go through all of it's steps? #-------------------# # Java Checking # #-------------------# CheckJavas() { # Here, this script will attempt to check for Java by checking to see if installation folders are present. echo -n "Checking for Java" echo ""... (2 Replies)
Discussion started by: Enkouyami
2 Replies

10. Solaris

Need steps for Netbackup Update from 7.1 to 7.5

Hello Friends, I need a document with steps to upgrade Symantec Netbackup from 7.1 to 7.5. Would you please help me on this. I have Symantec provided pdf but looks like reference book. I need only steps which is needed to be followed. Please guide me. Information about my Server My... (11 Replies)
Discussion started by: manalisharmabe
11 Replies
thr_min_stack(3C)					   Standard C Library Functions 					 thr_min_stack(3C)

NAME
thr_min_stack - return the minimum-allowable size for a thread's stack SYNOPSIS
cc -mt [ flag... ] file...[ library... ] #include <thread.h> size_t thr_min_stack(void); DESCRIPTION
When a thread is created with a user-supplied stack, the user must reserve enough space to run this thread. In a dynamically linked execu- tion environment, it is very hard to know what the minimum stack requirments are for a thread. The function thr_min_stack() returns the amount of space needed to execute a null thread. This is a thread that was created to execute a null procedure. A thread that does some- thing useful should have a stack size that is thr_min_stack() + <some increment>. Most users should not be creating threads with user-supplied stacks. This functionality was provided to support applications that wanted complete control over their execution environment. Typically, users should let the threads library manage stack allocation. The threads library provides default stacks which should meet the requirements of any created thread. thr_min_stack() will return the unsigned int THR_MIN_STACK, which is the minimum-allowable size for a thread's stack. In this implementation the default size for a user-thread's stack is one mega-byte. If the second argument to thr_create(3C) is NULL, then the default stack size for the newly-created thread will be used. Otherwise, you may specify a stack-size that is at least THR_MIN_STACK, yet less than the size of your machine's virtual memory. It is recommended that the default stack size be used. To determine the smallest-allowable size for a thread's stack, execute the following: /* cc thisfile.c -lthread */ #define _REENTRANT #include <thread.h> #include <stdio.h> main() { printf("thr_min_stack() returns %u ",thr_min_stack()); } ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5), standards(5) SunOS 5.10 12 May 1998 thr_min_stack(3C)
All times are GMT -4. The time now is 05:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy