cgi.pl |
crypt.pl |
filesex.pl -- Extended operations on files |
hash_stream.pl -- Maintain a hash on a stream |
mallocinfo.pl -- Memory allocation details |
md5.pl -- MD5 hashes |
memfile.pl |
process.pl |
| process_create/3 | Create a new process running the file Exe and using arguments from the given list. |  |
| process_group_kill/1 | Send signal to the group containing process PID. |  |
| process_group_kill/2 | Send signal to the group containing process PID. |  |
| process_id/1 | True if PID is the process id of the running Prolog process. |  |
| process_id/2 | PID is the process id of Process. |  |
| process_kill/1 | Send signal to process PID. |  |
| process_kill/2 | Send signal to process PID. |  |
| process_release/1 | Release process handle. |  |
| process_set_method/1 | Determine how the process is created on Unix systems. |  |
| process_wait/2 | True if PID completed with Status. |  |
| process_wait/3 | True if PID completed with Status. |  |
| process_which/2 | True when Path is an absolute file name for the specification Exe. |  |
prolog_stream.pl -- A stream with Prolog callbacks |
rlimit.pl |
sha.pl -- SHA secure hashes |
socket.pl |
| gethostname/1 | Return the canonical fully qualified name of this host. |  |
| host_address/3 | Translate between a machines host-name and it's (IP-)address. |  |
| ip_name/2 | Translate between the textual representation of an IP address and the Prolog data structure. |  |
| negotiate_socks_connection/2 | Negotiate a connection to DesiredEndpoint over StreamPair. |  |
| proxy_for_url/3 | This hook can be implemented to return a proxy to try when connecting to URL. |  |
| rewrite_host/3 | Allow rewriting the host for tcp_connect/2 and therefore all other predicates to connect a socket. |  |
| socket_create/2 | Create a socket according to Options. |  |
| tcp_accept/3 | This predicate waits on a server socket for a connection request by a client. |  |
| tcp_bind/2 | Bind the socket to Address on the current machine. |  |
| tcp_close_socket/1 | Closes the indicated socket, making SocketId invalid. |  |
| tcp_connect/2 | Connect SocketId. |  |
| tcp_connect/3 | Establish a TCP communication as a client. |  |
| tcp_connect/4 | Connect a (client) socket to Address and return a bi-directional connection through the stream-handles Read and Write. |  |
| tcp_fcntl/3 | Interface to the fcntl() call. |  |
| tcp_getopt/2 | Get information about Socket. |  |
| tcp_host_to_address/2 | Translate between a machines host-name and it's (IP-)address. |  |
| tcp_listen/2 | Tells, after tcp_bind/2, the socket to listen for incoming requests for connections. |  |
| tcp_open_socket/2 | Create streams to communicate to SocketId. |  |
| tcp_open_socket/3 | Similar to tcp_open_socket/2, but creates two separate sockets where tcp_open_socket/2 would have created a stream pair. |  |
| tcp_select/3 | Same as the built-in wait_for_input/3. |  |
| tcp_setopt/2 | Set options on the socket. |  |
| tcp_socket/1 | Equivalent to socket_create(SocketId, []) or, explicit, socket_create(SocketId, [domain(inet), type(stream)]). |  |
| try_proxy/4 | Attempt a socket-level connection via the given proxy to TargetAddress. |  |
| udp_receive/4 | Wait for and return the next datagram. |  |
| udp_send/4 | Send a UDP message. |  |
| udp_socket/1 | Equivalent to socket_create(SocketId, [type(dgram)]) or, explicit, socket_create(SocketId, [domain(inet), type(dgram)]). |  |
| unix_domain_socket/1 | Equivalent to socket_create(SocketId, [domain(unix)]) or, explicit, socket_create(SocketId, [domain(unix), type(stream)]). |  |
streaminfo.pl |
| stream_info/1 | Print detailed information about a stream or a file-number to the error output. |  |
streampool.pl -- Input multiplexing |
syslog.pl -- Unix syslog interface |
time.pl |
| alarm/3 | Set up an alarm to be signaled Time seconds from now. |  |
| alarm/4 | Set up an alarm to be signaled Time seconds from now. |  |
| alarm_at/3 | As alarm/3 and alarm/4, but schedule the alarm at an absolute point in time. |  |
| alarm_at/4 | As alarm/3 and alarm/4, but schedule the alarm at an absolute point in time. |  |
| call_with_time_limit/2 | Call Goal, while watching out for a (wall-time) limit. |  |
| call_with_time_limit/3 | Call Goal, while watching out for a (wall-time) limit. |  |
| current_alarm/4 | Enumerate the alarms in the schedule. |  |
| install_alarm/1 | Install an alarm allocated using alarm/4 with the install(false) option or de-activated using uninstall_alarm/1. |  |
| install_alarm/2 | Install an alarm allocated using alarm/4 with the install(false) option or de-activated using uninstall_alarm/1. |  |
| remove_alarm/1 | Remove an alarm. |  |
| uninstall_alarm/1 | De-activate an alarm. |  |
udp_broadcast.pl -- A UDP broadcast proxy |
uid.pl -- User and group management on Unix systems |
unix.pl |
| detach_IO/0 | Detach I/O similar to detach_IO/1. |  |
| detach_IO/1 | This predicate is intended to create Unix deamon processes. |  |
| dup/2 | Interface to Unix dup2(), copying the underlying filedescriptor and thus making both streams point to the same underlying object. |  |
| exec/1 | Replace the running program by starting Command. |  |
| fork/1 | Clone the current process into two branches. |  |
| fork_exec/1 | Fork (as fork/1) and exec (using exec/1) the child immediately. |  |
| kill/2 | Deliver a software interrupt to the process with identifier Pid using software-interrupt number Signal. |  |
| pipe/2 | Create a communication-pipe. |  |
| prctl/1 | Access to Linux process control operations. |  |
| sysconf/1 | Access system configuration. |  |
| wait/2 | Wait for a child to change status. |  |
uri.pl -- Process URIs |
uuid.pl -- Universally Unique Identifier (UUID) Library |