Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

intro(5) [osf1 man page]

intro(5)							File Formats Manual							  intro(5)

NAME
intro - Introduction to miscellaneous reference pages DESCRIPTION
This section contains miscellaneous documentation on various topics. The section also contains information about text-processing macro packages used by nroff and other *roff commands. Some reference pages in this section may contain suffixes to allow their files to exist with those of other reference pages having the same base name and section number. When used, suffixes are made up of one to four letters. See the man(1) reference page for more information on suffixes. intro(5)

Check Out this Related Man Page

intro(3)						     Library Functions Manual							  intro(3)

NAME
intro - Introduction to library functions DESCRIPTION
Section 3 reference pages describe functions that may be found in various libraries. The library functions are those other than the func- tions that directly invoke Tru64 UNIX system primitives, described in Section 2 reference pages. Some reference pages in Section 3 may contain suffixes to allow their files to exist with those of other reference pages having the same base name and section number. When used, suffixes are made up of one to four letters. See the man(1) reference page for more information on suffixes. To use the reentrant functions and data structures identified as "obsolete" in Section 3 reference pages, it is necessary to define the preprocessor symbol _REENTRANT prior to including the associated include file. If this is not done, prototypes and supplementary data structures for these functions may not be defined. This symbol is defined for you if you use the -threads or -pthread switches to the cc or c89 command. All libc functions are threadsafe unless otherwise indicated on their respective reference pages. The following table lists non-threadsafe libc functions and their threadsafe equivalents (which are provided in libc.so for use in multithreaded applications): ------------------------------------------- Not Threadsafe Threadsafe Equivalent ------------------------------------------- asctime asctime_r ctime ctime_r endpwent endpwent_r fgetgrent fgetgrent_r fgetpwent fgetpwent_r getgrent getgrent_r getgrgid getgrgid_r getgrname getgrname_r getpwent getpwent_r getpwnam getpwnam_r getpwuid getpwuid_r gmtime gmtime_r localtime localtime_r rand rand_r readdir readdir_r setpwent setpwent_r strtok strtok_r The following functions are not threadsafe and do not have threadsafe equivalents: registerrpc, svc_destroy, svc_freeargs, svc_getargs, svc_getcaller, svc_getreq, svc_getreqset, svc_register, svc_run, svc_sendreply, svc_unregister, svcerr_auth, svcerr_decode, svcerr_noproc, svcerr_noprog, svcerr_progvers, svcerr_systemerr, svcerr_weakauth, svcfd_create, svcraw_create, svctcp_create, svcudp_create, xprt_regis- ter, xprt_unregister ERRORS
Functions in the math library may return conventional values when the function is undefined for the given arguments or when the value is not representable. In these cases, the external variable errno is set to the value of EDOM (domain error) or ERANGE (range error). For further information, see intro(2). The values of EDOM and ERANGE are defined in the include file <math.h>. FILES
/usr/lib/libc.a /usr/lib/libcP.a /usr/lib/libm.a /usr/lib/libcV.a RELATED INFORMATION
cc(1), ld(1), nm(1), intro(2) delim off intro(3)
Man Page

12 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Our First Flash Intro ?

(13 Replies)
Discussion started by: Neo
13 Replies

2. Post Here to Contact Site Administrators and Moderators

Our First Flash Intro ?

Well, someone created a flash intro for us (their first attempt at SWiSH!) OK, SECOND DRAFT: https://www.unix.com/test_intro2.swf --------------------------- FIRST DRAFT: https://www.unix.com/test_intro1.swf Notice it says "Search before posting a question"..... Well????... (24 Replies)
Discussion started by: Neo
24 Replies

3. Programming

Introducing Delay less then a second.

Hi, I have a doubt in introducing a delay in the programs. We know that we do have a sleep() function/api using which we can bring a delay in terms of seconds. A minimum delay can be atleast 1 second. Now I'm bothered about how to introduce a delay that is just less than a second. Like... (3 Replies)
Discussion started by: S.Vishwanath
3 Replies

4. Shell Programming and Scripting

how to introduce delay in the script??(urgent)

Hi all, i would like to know how to introduce a delay in the execution of a cmd? am trying to copy a file which is about 650 mb and then perform some actions on it.. however since its huge i would like to introduce a delay in exection until the process is over i dont want it to proceed to... (10 Replies)
Discussion started by: wrapster
10 Replies

5. Cybersecurity

Intrusion Detection - System Call Introspection

can u give me a code for host based intrusion detection using system call introspection... (5 Replies)
Discussion started by: aravind007
5 Replies

6. Shell Programming and Scripting

intro to UNIX - making a sort-of recycle bin (for fun)

Hello, I'm only taking Intro to UNIX in school right now, so please bear with me. My problem is with a sort-of recycle-bin rig I've created for fun. I'm using Ubuntu 9.04, I am the admin. (only user, actually) of this computer. I'm using this script in ~/.bashrc # if files exist, remove contents... (6 Replies)
Discussion started by: jzacsh
6 Replies

7. Shell Programming and Scripting

how to introduce a space in a single column without distrubing the other columns

Hello Experts, I am new to this forum, I would like to do the following changes in one of the column of a txt file, which is having around 9 column. For example, column 3 is having letters like this AB11 AB12 C CA CB AC1 AC2 I would like to convert the same column as follows ... (5 Replies)
Discussion started by: Fredrick
5 Replies

8. Shell Programming and Scripting

How to introduce delay in Shell Script till a key stroke.

Hi All, How to introduce delay in the Bash/Shell Script till key stroke. Below is the requirement.. 1.Execute set of commands. 2.Display the message echo "press any key to continue" Introduce a delay till key stroke. 3.Execute next set of commands. Thanks in Advance Sunil.K (5 Replies)
Discussion started by: sunilrk07
5 Replies

9. Solaris

Create files to introduce with ZFS

Hello, To learn ZFS, i try to create pool . and for that i want create 10 files with 512MB (because i dont have multiple disks and multiple controllers) ADMIT THAT THIS IS TEN HIGH-PERFORMANCE HARD DRIVES To get this 10 files,all of them have the same size : 512MB, I do these... (9 Replies)
Discussion started by: herbich1985
9 Replies

10. Shell Programming and Scripting

How to introduce the missing number sequentially?

Dear Help, I have an input file which looks like below 002 1000 2000 3000 003 2000 3000 4000 005 1000 2000 6000 I would like to have an output which inserts the missing number in sequential sorting as shown below... 001 0 0 0 002 1000 2000 3000 003 2000 3000 4000 004 0 0 0 005 1000... (5 Replies)
Discussion started by: Indra2011
5 Replies

11. Shell Programming and Scripting

Extended ASCII Characters keep on getting reintroduced to text files

I am working with a log file that I am trying to clean up by removing non-English ASCII characters. I am using Bash via Cygwin on Windows. Before I start I set: export LC_ALL=C I clean it up by removing all non-English ASCII characters with the following command; grep -v $''... (4 Replies)
Discussion started by: lewk
4 Replies

12. What is on Your Mind?

Hunting Anomalous Bots - An Introduction to Cyber-Objects - Live From Cyberspace

https://www.unix.com/members/1-albums212-picture687.png Hunting Anomalous Bots - An Introduction to Cyber-Objects - Live From Cyberspace Click title image (above) for video tutorial. (5 Replies)
Discussion started by: Neo
5 Replies