-->
Page 914
stored in decpt. A negative value for decpt means that the decimal point is to the left of the start of the string. If the sign of number is negative, sign is set to a nonzero value; otherwise, it's set to 0.
The fcvt() function is identical to ecvt(), except that ndigits specifies the number of digits after the decimal point.
RETURN VALUE
Both the ecvt()and fcvt() functions return a pointer to a static string containing the ASCII representation of number. The static string is overwritten by each call to ecvt() or fcvt().
SEE ALSO
gcvt(3), sprintf(3)
28 March 1993
erf, erfcError function and complementary error function
SYNOPSIS
#include <math.h> double erf(double x); double erfc (double x);
DESCRIPTION
The erf() function returns the error function of x, defined as
erf(x) = 2/sqrt(pi)* integral from 0 to x of exp(-t*t) dt
The erfc() function returns the complementary error function of xthat is, 1.0_erf(x).
CONFORMS TO
SVID 3, BSD 4.3
SEE ALSO
exp(3)
BSD, 25 June 1993
execl, execlp, execle, exect, execv, execvpExecute a file
SYNOPSIS
#include <unistd.h> extern char **environ; int execl(const char *path, const char *arg, ...); int execlp(const char *file, const char *arg, ...); int execle(const char *path, const char *arg, ...); int execlp(const char *file, const char *arg, ...); int execle(const char *path, const char *arg, ...); int execle(const char *path, const char *arg , ..., char * const envp[]); int exect(const char *path, char *const argv[]); int execv(const char *path, char *const argv[]); int execvp(const char *file, char *const argv[]);
execl, execlp, execle, exect, execv, execvp
DESCRIPTION
The exec family of functions replaces the current process image with a new process image. The functions described in this manual page are front ends for the function execve(2). (See the manual page for execve for detailed information about the replacement of the current process.)
The initial argument for these functions is the pathname of a file that is to be executed.
The const char *arg and subsequent ellipses in the execl, execlp, and execle functions can be thought of as arg0, arg1, , argn. Together they describe a list of one or more pointers to null-terminated strings that represent the argument list available to the executed program. The first argument, by convention, should point to the file name associated with the file being executed. The list of arguments must be terminated by a NULL pointer.
The exect, execv, and execvp functions provide an array of pointers to null-terminated strings that represent the argument list available to the new program. The first argument, by convention, should point to the filename associated with the file being executed. The array of pointers must be terminated by a NULL pointer.
The execle and exect functions also specify the environment of the executed process by following the NULL pointer that terminates the list of arguments in the parameter list or the pointer to the argv array with an additional parameter. This additional parameter is an array of pointers to null-terminated strings and must be terminated by a NULL pointer. The other functions take the environment for the new process image from the external variable environ in the current process.
Some of these functions have special semantics.
The functions execlp and execvp will duplicate the actions of the shell in searching for an executable file if the specified filename does not contain a slash (/) character. The search path is the path specified in the environment by the PATH variable. If this variable isn't specified, the default path /bin:/usr/bin: is used (is this true for Linux?). In addition, certain errors are treated specially.
If permission is denied for a file (the attempted execve returned EACCES), these functions will continue searching the rest of the search path. If no other file is found, however, they will return with the global variable errno set to EACCES.
If the header of a file isn't recognized (the attempted execve returned ENOEXEC), these functions will execute the shell with the path of the file as its first argument. (If this attempt fails, no further searching is done.)
If the file is currently busy (the attempted execve returned ETXTBUSY), these functions will sleep for several seconds, periodically re-attempting to execute the file. (Is this true for Linux?)
The function exect executes a file with the program-tracing facilities enabled (see ptrace(2)).
RETURN VALUES
If any of the exec functions returns, an error will have occurred. The return value is _1, and the global variable errno will be set to indicate the error.
FILES
/bin/sh
ERRORS
execl, execle, execlp, and execvp may fail and set errno for any of the errors specified for the library functions execve(2) and malloc(3).
exect and execv may fail and set errno for any of the errors specified for the library function execve(2).
SEE ALSO
sh(1), execve(2), fork(2), trace(2), environ(5), ptrace(2)
COMPATIBILITY
Historically, the default path for the execlp and execvp functions was /bin:/usr/bin. This was changed to place the current directory last to enhance system security.
Page 915
The behavior of execlp and execvp when errors occur while attempting to execute the file is historic practice, but has not traditionally been documented and is not specified by the POSIX standard.
Traditionally, the functions execlp and execvp ignored all errors except for the ones described above and ENOMEM and E2BIG, upon which they returned. They now return if any error other than the ones described in the "Errors" section occurs.
STANDARDS
execl, execv, execle, execlp, and execvp conform to IEEE Std1003.1-88 (POSIX.1).
BSD Man Page, 29 November 1993
errnoNumber of last error
SYNOPSIS
#include <errno.h> extern int errno;
DESCRIPTION
The integer errno is set by system calls (and some library functions) to indicate what went wrong. Its value is significant only when the call returns an error (usually _1), and a library function that does succeed is allowed to change errno.
Sometimes, when _1 is also a legal return value, you have to set errno to 0 before the call in order to detect possible errors.
POSIX lists the following symbolic error names:
E2BIG | Arg list too long |
EACCES | Permission denied |
EAGAIN | Resource temporarily unavailable |
EBADF | Bad file descriptor |
EBUSY | Resource busy |
ECHILD | No child processes |
EDEADLK | Resource deadlock avoided |
EDOM | Domain error |
EEXIST | File exists |
EFAULT | Bad address |
EFBIG | File too large |
EINTR | Interrupted function call |
EINVAL | Invalid argument |
EIO | Input/output error |
EISDIR | Is a directory |
EMFILE | Too many open files |
EMLINK | Too many links |
ENAMETOOLONG | Filename too long |
ENFILE | Too many open files in system |
ENODEV | No such device |
ENOENT | No such file or directory |
ENOEXEC | Exec format error |
ENOLCK | No locks available |
ENOMEM | Not enough space |