The posix-shm Reference Manual
Table of Contents
The posix-shm Reference Manual
This is the posix-shm Reference Manual, version 0.0.3,
generated automatically by Declt version 3.0 "Montgomery Scott"
on Sun May 15 05:50:35 2022 GMT+0.
1 Introduction
posix-shm

Common Lisp bindings to the POSIX shared memory API.
The POSIX shared memory (or shm
) API "allows processes to communicate information by sharing a region of memory." (shm_overview(7)
).
This library provides a wrapper over the POSIX shm API, all POSIX commands that interact with shm file descriptors, and a small handful of utility functions and macros.
Features include:
- Bindings for
shm_open
, ftruncate
, mmap
, munmap
, shm_unlink
, close
, and fchmod
.
- shm-open appears more like open from the CL standard.
- shm-open*, for creating anonymous shm objects.
- with-open-shm, with-mmap and similar with- macros for safely accessing resources with dynamic extent.
Usage
Posix-shm is not yet available on Quicklisp:
$ cd ~/common-lisp/ # Or wherever you store your systems
$ git clone https://git.sr.ht/~shunter/posix-shm
(ql:quickload :posix-shm)
(use-package :posix-shm)
(defparameter +shm-size+
(* 10 (cffi:foreign-type-size :int)))
(defparameter *shm*
(shm-open "/foobar-shm" :direction :io :if-does-not-exist :create
:permissions '(:user-read :user-write)))
(shm-ftruncate *shm* +shm-size+)
(defparameter *ptr1*
(mmap (cffi:null-pointer) +shm-size+ '(:write) *shm* 0))
(defparameter *ptr2*
(mmap (cffi:null-pointer) +shm-size+ '(:read) *shm* 0))
(dotimes (i 10)
(setf (cffi:mem-aref *ptr1* :int i) (* i 10)))
(dotimes (i 10)
(print (cffi:mem-aref *ptr2* :int i)))
(munmap *ptr1* +shm-size+)
(munmap *ptr2* +shm-size+)
(shm-close *shm*)
(shm-unlink "/foobar-shm")
Use with-open-shm and with-mmap to automatically close and munmap when the program leaves scope:
(with-open-shm (shm "/foobar-shm" :direction :io)
(shm-ftruncate shm 100)
(with-mmap (ptr (cffi:null-pointer) 100 '(:read :write) shm 0)
;; do your thing...
))
with-mmapped-shm opens a shm, truncates it, and then maps it to a pointer all in one:
(with-mmapped-shm (shm ptr ("/foobar-shm" :direction :io)
((cffi:null-pointer) 100 '(:read :write) 0))
;; do your thing...
)
Use shm-open* to create anonymous shm objects:
(defvar *anon-shm* (shm-open* :direction :io :permissions '(:user-all))
;; do your thing...
(shm-close *anon-shm*)
Contributing
Any comments, questions, issues, or patches are greatly appreciated!
I do my main development on Sourcehut, with a mailing list and issue tracker.
API
[Enum] permission
Used for setting the permissions of the shm on shm-open
and fchmod
, and correspond to whether a user, group, or all users can read, write, or execute the shm (or perform any three):
:rusr
, :user-read
- O_RUSR
.
:wusr
, :user-write
- O_WUSR
.
:xusr
, :user-exec
- O_XUSR
.
:rwxu
, :user-all
- O_RWXU
.
:rgrp
, :group-read
- O_RGRP
.
:wgrp
, :group-write
- O_WGRP
.
:xgrp
, :group-exec
- O_XGRP
.
:rwxg
, :group-all
- O_RWXG
.
:roth
, :other-read
- O_ROTH
.
:woth
, :other-write
- O_WOTH
.
:xoth
, :other-exec
- O_XOTH
.
:rwxo
, :other-all
- O_RWXO
.
[Condition] shm-error (error)
Raised whenever any POSIX API function fails.
The errno is accessed by the reader function shm-error-errno, and is reported as the errno's strerror(3)
value.
[Function] shm-open name &key (direction :input) if-exists if-does-not-exist permissions => fd
Creates and opens a new, or opens an existing, POSIX shared memory object.
It can then be used by separate processes to mmap the same region of shared memory.
name -- a string designator.
direction -- one of :input
or :io
. The default is :input
.
if-exists -- one of :error
, :overwrite
, :truncate
, :supersede
, or nil
.
The default is :overwrite
.
if-does-not-exist -- one of :error
, :create
, or nil
.
The default is :error
if direction is :input
or if-exists is :overwrite
or :truncate
, or :create
otherwise.
permissions -- a list of permission keywords.
If direction is :input
, it opens the shm object for read access (in C, this would be the O_RDONLY
flag).
If it is :io
, it it opened for read-write access (O_RDWR
).
if-exists specifies the action to be taken if a shm object of the name name already exists.
If direction is :input
, it is ignored:
:error
- An error of type shm-error is signaled.
If if-does-not-exist is not :create
, then this is ignored.
:overwrite
- Output operations on the shm object destructively modify the shared memory.
:truncate
- Like :overwrite
, but the shm object is first truncated to 0 bytes first (in C, this would be O_TRUNC
).
:supersede
- The existing shm object is superseded; that is, the old shm object is unlinked, and then a new shm object is created.
If if-does-not-exist is not :create
, then this is ignored.
nil
- No shm object is created; instead, nil
is returned to indicate failure.
If if-does-not-exist is not :create
, then this is ignored.
if-does-not-exist specifies the action to be taken if a shm object of the name name does not exist.
:error
- An error of type shm-error is signaled.
:create
- An empty shm object is created (in C, this would be O_CREAT
).
nil
- No shm object is created; instead, nil
is returned to indicate failure.
If you're translating from C, each combination of oflag
would map to:
O_RDONLY
- `` (no keyword arguments)
O_RDONLY | O_CREAT
- :if-does-not-exist :create
O_RDONLY | O_CREAT | O_EXCL
- :if-exists :error :if-does-not-exist :create
O_RDONLY | O_TRUNC
- :if-exists :truncate
O_RDONLY | O_CREAT | O_TRUNC
- :if-exists :truncate :if-does-not-exist :create
O_RDONLY | O_CREAT | O_EXCL | O_TRUNC
- :if-exists :error :if-does-not-exist :create
O_RDWR
- :direction :io
O_RDWR | O_CREAT
- :direction :io :if-does-not-exist :create
O_RDWR | O_CREAT | O_EXCL
- :direction :io :if-exists :error
O_RDWR | O_TRUNC
- :direction :io :if-exists :truncate
O_RDWR | O_CREAT | O_TRUNC
- :direction :io :if-exists :truncate :if-does-not-exist :create
O_RDWR | O_CREAT | O_EXCL | O_TRUNC
- :direction :io :if-exists :error
shm-open signals a shm-error on failure.
[Function] shm-open* &key (direction :input) permissions (attempts 100) => fd
Creates and opens, and then unlinks, a new POSIX shared memory object.
This shm object may be shared with another UNIX process by sending its
file descriptor over a UNIX domain socket via SCM_RIGHTS
.
direction -- one of :input
or :io
. The default is :input
.
permissions -- a list of permission keywords.
attempts -- the number of times shm-open* tries to open a shm object before giving up.
shm-open* signals a shm-error on failure.
[Function] shm-ftruncate fd length
Cause the shm object specified by FD to be truncated to a size of exactly length bytes.
shm-ftruncate signals a shm-error on failure.
[Function] mmap addr length protections fd offset => ptr
Creates a new mapping in the virtual address space of the calling process.
addr -- a CFFI pointer.
length -- a positive length of the mapping, up to the length of the shm object.
protections -- a list of :exec
, :read
, :write
, or nil.
fd -- a valid file descriptor.
offset -- a nonnegative integer.
protections describes the desired memory protection of the mapping. It is either nil
, or a list of the following keywords:
:exec
- pages may be executed.
:read
- pages may be read.
:write
- pages may be written.
mmap signals a shm-error on failure.
Note: Unlike C's mmap(2)
, mmap does not have a flags parameter.
The only POSIX-compliant, or otherwise widely-supported, flag available that makes sense in context with shm objects is MAP_SHARED
.
Therefore, mmap removes the flags parameter and calls mmap(2)
with the constant value MAP_SHARED
.
[Function] munmap addr size
Deletes the mappings for the specified address range, and cause further references to addresses within the range to generate invalid memory references.
Closing the shm file descriptor may not automatically un-map the region.
mmap signals a shm-error on failure.
[Function] shm-unlink name
Removes a shm object previously created by shm-open.
name -- a string designator.
If the shm object does not exist, or the caller does not have permission to unlink the object, a shm-error is signaled.
[Function] shm-close fd
Closes a file descriptor, so that it no longer refers to any shm object and may be reused.
fd -- a valid file descriptor.
If fd is a bad file descriptor, an I/O error occurs, or the close()
call was interrupted by a signal, a shm--error is signaled.
[Function] fchmod fd permissions
Changes the file mode bits of the open shm object.
permissions -- a list of permission keywords.
fchmod signals a shm-error on failure.
[Function] fstat fd => stats
Returns information about a file as a 10-item list with the following integer fields:
- The ID of device containing the file
- The Inode number
- The file type and mode
- The number of hard links
- The user ID of the owner
- The group ID of the owner
- The device ID of the owner
- The total size, in bytes
- The block size for filesystem I/O
- The number of 512B blocks allocated
fstat signals a shm-error on failure.
[Function] fchown fd owner-id group-id
Changes the ownership of the open shm object to the given owner and
group ID's (mapped to users and groups in their respective passwd(5)
and group(5)
files).
If OWNER-ID or GROUP-ID is specified as NIL, then that ID is not
changed.
[Macro] with-open-shm (var &rest options) &body body => result
Runs BODY under lexical scope of VAR, an open shm object.
VAR is closed (but not unlinked) when the program exits scope.
[Macro] with-open-shm* (var &rest options) &body body => result
Like with-open-shm, but uses shm-open* instead of shm-open to open a shm object.
[Macro] with-mmap (var &rest options) &body body => result
Runs BODY under lexical scope of VAR, a memory-mapped pointer.
VAR is unmapped when the program exits scope.
[Macro] with-mmapped-shm (shm-var mmap-var shm-options (ptr length protections offset) :key (truncate t)) &body body => result
Opens a shm object SHM, truncates it to (+ LENGTH OFFSET)
(unless otherwise configured), and maps it to MMAP.
Runs BODY under lexical scope of SHM and MMAP, unmapping and closing both when the program exits scope.
[Macro] with-mmapped-shm* (shm-var mmap-var shm-options (ptr length protections offset) :key (truncate t)) &body body => result
Like with-mmapped-shm, but uses shm-open* instead of shm-open to open a shm object.
2 Systems
The main system appears first, followed by any subsystem dependency.
2.1 posix-shm
- Author
Samuel Hunter
- Contact
~shunter/public-inbox@lists.sr.ht
- Home Page
https://sr.ht/~shunter/posix-shm/
- Source Control
(:git "https://git.sr.ht/~shunter/posix-shm")
- Bug Tracker
https://todo.sr.ht/~shunter/posix-shm
- License
BSD 3-Clause
- Description
POSIX shared memory
- Version
0.0.3
- Dependencies
-
- Source
posix-shm.asd (file)
- Components
-
3 Modules
Modules are listed depth-first from the system components tree.
3.1 posix-shm/spec
- Parent
posix-shm (system)
- Location
spec/
- Component
shm.h (file)
4 Files
Files are sorted by type and then listed depth-first from the systems
components trees.
4.1 Lisp
4.1.1 posix-shm.asd
- Location
posix-shm.asd
- Systems
posix-shm (system)
4.1.2 posix-shm/ffi.lisp
- Dependency
spec (module)
- Parent
posix-shm (system)
- Location
ffi.lisp
- Packages
xyz.shunter.posix-shm.ffi
- Exported Definitions
-
- Internal Definitions
-
4.1.3 posix-shm/shm.lisp
- Dependency
ffi.lisp (file)
- Parent
posix-shm (system)
- Location
shm.lisp
- Packages
xyz.shunter.posix-shm
- Exported Definitions
-
- Internal Definitions
-
4.2 Static
4.2.1 posix-shm/spec/shm.h
- Parent
spec (module)
- Location
spec/shm.h
5 Packages
Packages are listed by definition order.
5.1 xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Exported Definitions
-
- Internal Definitions
-
5.2 xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Nickname
posix-shm
- Use List
common-lisp
- Exported Definitions
-
- Internal Definitions
-
6 Definitions
Definitions are sorted by export status, category, package, and then by
lexicographic order.
6.1 Exported definitions
6.1.1 Special variables
- Special Variable: +__always_inline+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__attribute_used__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__big_endian+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__bit_types_defined__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__blkcnt64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__blkcnt_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__blksize_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__byte_order+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__clock_t_defined+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__clock_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__clockid_t_defined+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__clockid_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__cpu_mask_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__daddr_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__dev_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__extern_always_inline+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__extern_inline+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_getown+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_getown_ex+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_getsig+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_setown+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_setown_ex+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__f_setsig+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fd_setsize+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__flexarr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__float_word_order+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fortify_function+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsblkcnt64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsblkcnt_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsfilcnt64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsfilcnt_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsid_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__fsword_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__gid_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_c99_flexarr_available+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_minor__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_deprecated_gets+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_deprecated_scanf+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_iec_60559_bfp_ext+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_iec_60559_bfp_ext_c2x+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_iec_60559_funcs_ext+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_iec_60559_funcs_ext_c2x+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_iec_60559_types_ext+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_isoc2x+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__glibc_use_lib_ext2+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__gnu_library__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__have_generic_selection+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__have_pthread_attr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__id_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ilp32_off32_cflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ilp32_off32_ldflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ilp32_offbig_cflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ilp32_offbig_ldflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__inline+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ino64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ino_t_matches_ino64_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ino_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__kernel_old_timeval_matches_timeval64+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__key_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ldouble_redirects_to_float128_abi+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__little_endian+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__lp64_off64_cflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__lp64_off64_ldflags+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__mode_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__nlink_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_cloexec+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_direct+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_directory+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_dsync+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_largefile+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_noatime+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_nofollow+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_path+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__o_tmpfile+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__off64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__off_t_matches_off64_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__off_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__once_flag_init+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__pdp_endian+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__pid_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__posix2_this_version+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__posix_fadv_dontneed+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__posix_fadv_noreuse+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__pthread_mutex_have_prev+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ptr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__restrict+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__restrict_arr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__rlim64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__rlim_t_matches_rlim64_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__rlim_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s16_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s32_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s64_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_iexec+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifblk+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifchr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifdir+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ififo+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_iflnk+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifmt+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifreg+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_ifsock+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_iread+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_isgid+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_isuid+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_isvtx+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__s_iwrite+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_attr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_barrier_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_barrierattr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_cond_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_condattr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_mutex_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_mutexattr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_rwlock_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sizeof_pthread_rwlockattr_t+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__slong32_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__slongword_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__squad_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ssize_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__statfs_matches_statfs64+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__std_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__stdc_iec_559__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__stdc_iec_559_complex__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__stdc_iso_10646__+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__suseconds64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__suseconds_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__sword_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__syscall_slong_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__syscall_ulong_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__syscall_wordsize+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__time64_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__time_t_defined+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__time_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__timer_t_defined+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__timer_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__timesize+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__u16_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__u32_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__u64_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__uid_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ulong32_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__ulongword_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__uquad_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_atfile+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_fortify_level+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_isoc11+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_isoc95+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_isoc99+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_posix+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_posix199309+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_posix199506+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_posix2+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_xopen2k+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__use_xopen2k8+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__useconds_t_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__uword_type+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__wordsize+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +__wordsize_time64_compat32+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +eexist+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +eintr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +enoent+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +map-shared+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-accmode+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-append+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-async+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-cloexec+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-creat+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-directory+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-dsync+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-excl+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-fsync+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-ndelay+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-noctty+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-nofollow+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-nonblock+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-rdonly+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-rdwr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-rsync+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-sync+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-trunc+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +o-wronly+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-exec+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-growsdown+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-growsup+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-none+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-read+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +prot-write+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifblk+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifchr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifdir+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ififo+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-iflnk+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifmt+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifreg+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ifsock+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-irgrp+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-iroth+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-irusr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-irwxg+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-irwxo+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-irwxu+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-isgid+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-isuid+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-iwgrp+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-iwoth+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-iwusr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ixgrp+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ixoth+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +s-ixusr+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +seek-cur+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +seek-end+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +seek-set+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +stderr-fileno+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +stdin-fileno+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Special Variable: +stdout-fileno+
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
6.1.2 Symbol macros
- Symbol Macro: *errno*
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Expansion
(xyz.shunter.posix-shm.ffi::%var-accessor-*errno*)
- Symbol Macro: __environ
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Expansion
(cffi-sys:%mem-ref (or (cffi-sys:%foreign-symbol-pointer "__environ" :default) (error "foreign extern symbol not found: ~s" (quote xyz.shunter.posix-shm.ffi:__environ))) :pointer)
6.1.3 Macros
- Macro: with-mmap (VAR PTR LENGTH PROTECTIONS FD OFFSET) &body BODY
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Macro: with-mmapped-shm (FD MMAP SHM-OPTIONS (PTR LENGTH PROTECTIONS OFFSET) &key TRUNCATE) &body BODY
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Macro: with-mmapped-shm* (FD MMAP SHM-OPTIONS (PTR LENGTH PROTECTIONS OFFSET) &key TRUNCATE) &body BODY
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Macro: with-open-shm (VAR &rest OPTIONS) &body BODY
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Macro: with-open-shm* (VAR &rest OPTIONS) &body BODY
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
6.1.4 Functions
- Function: __errno_location ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __fsid_t.__val[] __FSID_T I0
-
- Function: (setf __fsid_t.__val[]) V __FSID_T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __fsid_t.__val[]& __FSID_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __getpgid __PID
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_b __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_b) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_b& __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_b* __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_b*) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_tolower __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_tolower) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_tolower& __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_tolower* __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_tolower*) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_toupper __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_toupper) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_toupper& __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__ctype_toupper* __LOCALE_STRUCT
-
- Function: (setf __locale_struct.__ctype_toupper*) V __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__locales[] __LOCALE_STRUCT I0
-
- Function: (setf __locale_struct.__locales[]) V __LOCALE_STRUCT I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__locales[]& __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__locales[]* __LOCALE_STRUCT I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__names[] __LOCALE_STRUCT I0
-
- Function: (setf __locale_struct.__names[]) V __LOCALE_STRUCT I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__names[]& __LOCALE_STRUCT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct.__names[]* __LOCALE_STRUCT I0
-
- Function: (setf __locale_struct.__names[]*) V __LOCALE_STRUCT I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __once_flag.__data __ONCE_FLAG
-
- Function: (setf __once_flag.__data) V __ONCE_FLAG
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __once_flag.__data& __ONCE_FLAG
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __posix_getopt ___ARGC ___ARGV __SHORTOPTS
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_orig_size __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__g1_orig_size) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_orig_size& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__g1_start) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32 __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32.__high __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__g1_start32.__high) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32.__high& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32.__low __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__g1_start32.__low) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g1_start32.__low& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_refs[] __PTHREAD_COND_S I0
-
- Function: (setf __pthread_cond_s.__g_refs[]) V __PTHREAD_COND_S I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_refs[]& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_signals[] __PTHREAD_COND_S I0
-
- Function: (setf __pthread_cond_s.__g_signals[]) V __PTHREAD_COND_S I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_signals[]& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_size[] __PTHREAD_COND_S I0
-
- Function: (setf __pthread_cond_s.__g_size[]) V __PTHREAD_COND_S I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__g_size[]& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wrefs __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__wrefs) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wrefs& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__wseq) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32 __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32.__high __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__wseq32.__high) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32.__high& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32.__low __PTHREAD_COND_S
-
- Function: (setf __pthread_cond_s.__wseq32.__low) V __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s.__wseq32.__low& __PTHREAD_COND_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__next __PTHREAD_INTERNAL_LIST
-
- Function: (setf __pthread_internal_list.__next) V __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__next& __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__next* __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__prev __PTHREAD_INTERNAL_LIST
-
- Function: (setf __pthread_internal_list.__prev) V __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__prev& __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list.__prev* __PTHREAD_INTERNAL_LIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist.__next __PTHREAD_INTERNAL_SLIST
-
- Function: (setf __pthread_internal_slist.__next) V __PTHREAD_INTERNAL_SLIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist.__next& __PTHREAD_INTERNAL_SLIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist.__next* __PTHREAD_INTERNAL_SLIST
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__next __PTHREAD_LIST_T
-
- Function: (setf __pthread_list_t.__next) V __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__next& __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__next* __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__prev __PTHREAD_LIST_T
-
- Function: (setf __pthread_list_t.__prev) V __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__prev& __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t.__prev* __PTHREAD_LIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__count __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__count) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__count& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__elision __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__elision) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__elision& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__kind __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__kind) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__kind& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__next __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__list.__next) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__next& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__next* __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__prev __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__list.__prev) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__prev& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__list.__prev* __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__lock __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__lock) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__lock& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__nusers __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__nusers) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__nusers& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__owner __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__owner) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__owner& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__spins __PTHREAD_MUTEX_S
-
- Function: (setf __pthread_mutex_s.__spins) V __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s.__spins& __PTHREAD_MUTEX_S
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__cur_writer __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__cur_writer) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__cur_writer& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__flags __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__flags) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__flags& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad1[] __PTHREAD_RWLOCK_ARCH_T I0
-
- Function: (setf __pthread_rwlock_arch_t.__pad1[]) V __PTHREAD_RWLOCK_ARCH_T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad1[]& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad2 __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__pad2) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad2& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad3 __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__pad3) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad3& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad4 __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__pad4) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__pad4& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__readers __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__readers) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__readers& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__rwelision __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__rwelision) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__rwelision& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__shared __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__shared) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__shared& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__writers __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__writers) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__writers& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__writers_futex __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__writers_futex) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__writers_futex& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__wrphase_futex __PTHREAD_RWLOCK_ARCH_T
-
- Function: (setf __pthread_rwlock_arch_t.__wrphase_futex) V __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t.__wrphase_futex& __PTHREAD_RWLOCK_ARCH_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t.__next __PTHREAD_SLIST_T
-
- Function: (setf __pthread_slist_t.__next) V __PTHREAD_SLIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t.__next& __PTHREAD_SLIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t.__next* __PTHREAD_SLIST_T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __stpcpy __DEST __SRC
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __stpncpy __DEST __SRC __N
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __strtok_r __S __DELIM __SAVE_PTR
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __xpg_strerror_r __ERRNUM __BUF __BUFLEN
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: close __FD
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: fchmod __FD __MODE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: fchmod FD PERMISSIONS
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: fchown __FD __OWNER __GROUP
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: fchown FD OWNER-ID GROUP-ID
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: fstat __FD __BUF
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: fstat FD
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: fstatat __FD __FILE __BUF __FLAG
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: ftruncate __FD __LENGTH
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: lstat __FILE __BUF
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: mmap __ADDR __LEN __PROT __FLAGS __FD __OFFSET
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: mmap PTR LENGTH PROTECTIONS FD OFFSET
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: munmap __ADDR __LEN
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: munmap PTR LENGTH
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: pthread-cond-t.__align PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__align) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__align& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_orig_size PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__g1_orig_size) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_orig_size& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__g1_start) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32 PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32.__high PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__g1_start32.__high) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32.__high& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32.__low PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__g1_start32.__low) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g1_start32.__low& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_refs[] PTHREAD-COND-T I0
-
- Function: (setf pthread-cond-t.__data.__g_refs[]) V PTHREAD-COND-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_refs[]& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_signals[] PTHREAD-COND-T I0
-
- Function: (setf pthread-cond-t.__data.__g_signals[]) V PTHREAD-COND-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_signals[]& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_size[] PTHREAD-COND-T I0
-
- Function: (setf pthread-cond-t.__data.__g_size[]) V PTHREAD-COND-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__g_size[]& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wrefs PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__wrefs) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wrefs& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__wseq) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32 PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32.__high PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__wseq32.__high) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32.__high& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32.__low PTHREAD-COND-T
-
- Function: (setf pthread-cond-t.__data.__wseq32.__low) V PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__data.__wseq32.__low& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__size[] PTHREAD-COND-T I0
-
- Function: (setf pthread-cond-t.__size[]) V PTHREAD-COND-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t.__size[]& PTHREAD-COND-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__align PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__align) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__align& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__count PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__count) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__count& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__elision PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__elision) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__elision& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__kind PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__kind) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__kind& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__next PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__list.__next) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__next& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__next* PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__prev PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__list.__prev) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__prev& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__list.__prev* PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__lock PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__lock) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__lock& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__nusers PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__nusers) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__nusers& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__owner PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__owner) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__owner& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__spins PTHREAD-MUTEX-T
-
- Function: (setf pthread-mutex-t.__data.__spins) V PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__data.__spins& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__size[] PTHREAD-MUTEX-T I0
-
- Function: (setf pthread-mutex-t.__size[]) V PTHREAD-MUTEX-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t.__size[]& PTHREAD-MUTEX-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__align PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__align) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__align& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__cur_writer PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__cur_writer) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__cur_writer& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__flags PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__flags) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__flags& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad1[] PTHREAD-RWLOCK-T I0
-
- Function: (setf pthread-rwlock-t.__data.__pad1[]) V PTHREAD-RWLOCK-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad1[]& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad2 PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__pad2) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad2& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad3 PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__pad3) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad3& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad4 PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__pad4) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__pad4& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__readers PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__readers) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__readers& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__rwelision PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__rwelision) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__rwelision& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__shared PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__shared) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__shared& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__writers PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__writers) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__writers& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__writers_futex PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__writers_futex) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__writers_futex& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__wrphase_futex PTHREAD-RWLOCK-T
-
- Function: (setf pthread-rwlock-t.__data.__wrphase_futex) V PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__data.__wrphase_futex& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__size[] PTHREAD-RWLOCK-T I0
-
- Function: (setf pthread-rwlock-t.__size[]) V PTHREAD-RWLOCK-T I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t.__size[]& PTHREAD-RWLOCK-T
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: shm-close FD
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: shm-ftruncate FD SIZE
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: shm-open __NAME __OFLAG __MODE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: shm-open NAME &key DIRECTION IF-EXISTS IF-DOES-NOT-EXIST PERMISSIONS
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: shm-open* &key DIRECTION PERMISSIONS ATTEMPTS
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: shm-unlink __NAME
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: shm-unlink NAME
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: stat __FILE __BUF
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.__glibc_reserved[] STAT I0
-
- Function: (setf stat.__glibc_reserved[]) V STAT I0
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.__glibc_reserved[]& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.__pad0 STAT
-
- Function: (setf stat.__pad0) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.__pad0& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-blksize STAT
-
- Function: (setf stat.st-blksize) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-blksize& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-blocks STAT
-
- Function: (setf stat.st-blocks) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-blocks& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-dev STAT
-
- Function: (setf stat.st-dev) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-dev& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-gid STAT
-
- Function: (setf stat.st-gid) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-gid& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-ino STAT
-
- Function: (setf stat.st-ino) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-ino& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-mode STAT
-
- Function: (setf stat.st-mode) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-mode& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-nlink STAT
-
- Function: (setf stat.st-nlink) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-nlink& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-rdev STAT
-
- Function: (setf stat.st-rdev) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-rdev& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-size STAT
-
- Function: (setf stat.st-size) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-size& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-uid STAT
-
- Function: (setf stat.st-uid) V STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat.st-uid& STAT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: strerror __ERRNUM
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
6.1.5 Generic functions
- Generic Function: shm-error-errno CONDITION
-
- Package
xyz.shunter.posix-shm
- Methods
- Method: shm-error-errno (CONDITION shm-error)
-
- Source
shm.lisp (file)
6.1.6 Conditions
- Condition: shm-error ()
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Direct superclasses
error (condition)
- Direct methods
shm-error-errno (method)
- Direct slots
- Slot: errno
-
- Initargs
:errno
- Readers
shm-error-errno (generic function)
6.1.7 Structures
- Structure: __fsid_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __locale_data ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __locale_struct ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __locale_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __once_flag ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __pthread_cond_s ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __pthread_internal_list ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Direct subclasses
__pthread_list_t (structure)
- Structure: __pthread_internal_slist ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Direct subclasses
__pthread_slist_t (structure)
- Structure: __pthread_list_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
__pthread_internal_list (structure)
- Structure: __pthread_mutex_s ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __pthread_rwlock_arch_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __pthread_slist_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
__pthread_internal_slist (structure)
- Structure: pthread-attr-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-barrier-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-barrierattr-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-cond-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-condattr-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-mutex-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-mutexattr-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-rwlock-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: pthread-rwlockattr-t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: stat ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
6.2 Internal definitions
6.2.1 Constants
- Constant: +negative-one+
-
"Negative one", represented by a uid_t.
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
6.2.2 Special variables
- Special Variable: +map-failed+
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Special Variable: +permissions+
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Special Variable: +protections+
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
6.2.3 Functions
- Function: %fchmod FD MODE
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: %mmap PTR LENGTH PROT FD OFFSET
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: %shm-open NAME OFLAG MODE IF-EXISTS IF-DOES-NOT-EXIST
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: %shm-open* OFLAG MODE ATTEMPTS
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: %var-accessor-*errno* ()
-
- Function: (setf %var-accessor-*errno*) VALUE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __caddr_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __caddr_t-ptr INSTANCE
-
- Function: (setf __caddr_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __caddr_t-validity INSTANCE
-
- Function: (setf __caddr_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __fsid_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __fsid_t-ptr INSTANCE
-
- Function: (setf __fsid_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __fsid_t-validity INSTANCE
-
- Function: (setf __fsid_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_data-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_data-ptr INSTANCE
-
- Function: (setf __locale_data-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_data-validity INSTANCE
-
- Function: (setf __locale_data-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct-ptr INSTANCE
-
- Function: (setf __locale_struct-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_struct-validity INSTANCE
-
- Function: (setf __locale_struct-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_t-ptr INSTANCE
-
- Function: (setf __locale_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __locale_t-validity INSTANCE
-
- Function: (setf __locale_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __once_flag-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __once_flag-ptr INSTANCE
-
- Function: (setf __once_flag-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __once_flag-validity INSTANCE
-
- Function: (setf __once_flag-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s-ptr INSTANCE
-
- Function: (setf __pthread_cond_s-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_cond_s-validity INSTANCE
-
- Function: (setf __pthread_cond_s-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list-ptr INSTANCE
-
- Function: (setf __pthread_internal_list-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_list-validity INSTANCE
-
- Function: (setf __pthread_internal_list-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist-ptr INSTANCE
-
- Function: (setf __pthread_internal_slist-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_internal_slist-validity INSTANCE
-
- Function: (setf __pthread_internal_slist-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t-ptr INSTANCE
-
- Function: (setf __pthread_list_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_list_t-validity INSTANCE
-
- Function: (setf __pthread_list_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s-ptr INSTANCE
-
- Function: (setf __pthread_mutex_s-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_mutex_s-validity INSTANCE
-
- Function: (setf __pthread_mutex_s-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t-ptr INSTANCE
-
- Function: (setf __pthread_rwlock_arch_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_rwlock_arch_t-validity INSTANCE
-
- Function: (setf __pthread_rwlock_arch_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t-ptr INSTANCE
-
- Function: (setf __pthread_slist_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __pthread_slist_t-validity INSTANCE
-
- Function: (setf __pthread_slist_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __timer_t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __timer_t-ptr INSTANCE
-
- Function: (setf __timer_t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: __timer_t-validity INSTANCE
-
- Function: (setf __timer_t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__caddr_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__fsid_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__locale_data INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__locale_struct INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__locale_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__once_flag INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_cond_s INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_internal_list INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_internal_slist INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_list_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_mutex_s INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_rwlock_arch_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__pthread_slist_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-__timer_t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-attr-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-barrier-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-barrierattr-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-cond-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-condattr-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-mutex-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-mutexattr-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-rwlock-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-pthread-rwlockattr-t INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: copy-stat INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: default-dne-option DIRECTION IF-EXISTS
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: flag KEYWORD HASH-TABLE
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: make-__caddr_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__fsid_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__locale_data &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__locale_struct &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__locale_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__once_flag &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_cond_s &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_internal_list &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_internal_slist &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_list_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_mutex_s &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_rwlock_arch_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__pthread_slist_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-__timer_t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-attr-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-barrier-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-barrierattr-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-cond-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-condattr-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-mutex-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-mutexattr-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-rwlock-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-pthread-rwlockattr-t &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: make-stat &key (PTR PTR) (VALIDITY VALIDITY)
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: open-options-to-oflag DIRECTION IF-EXISTS IF-DOES-NOT-EXIST
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: pthread-attr-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-attr-t-ptr INSTANCE
-
- Function: (setf pthread-attr-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-attr-t-validity INSTANCE
-
- Function: (setf pthread-attr-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrier-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrier-t-ptr INSTANCE
-
- Function: (setf pthread-barrier-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrier-t-validity INSTANCE
-
- Function: (setf pthread-barrier-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrierattr-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrierattr-t-ptr INSTANCE
-
- Function: (setf pthread-barrierattr-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-barrierattr-t-validity INSTANCE
-
- Function: (setf pthread-barrierattr-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t-ptr INSTANCE
-
- Function: (setf pthread-cond-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-cond-t-validity INSTANCE
-
- Function: (setf pthread-cond-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-condattr-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-condattr-t-ptr INSTANCE
-
- Function: (setf pthread-condattr-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-condattr-t-validity INSTANCE
-
- Function: (setf pthread-condattr-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t-ptr INSTANCE
-
- Function: (setf pthread-mutex-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutex-t-validity INSTANCE
-
- Function: (setf pthread-mutex-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutexattr-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutexattr-t-ptr INSTANCE
-
- Function: (setf pthread-mutexattr-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-mutexattr-t-validity INSTANCE
-
- Function: (setf pthread-mutexattr-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t-ptr INSTANCE
-
- Function: (setf pthread-rwlock-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlock-t-validity INSTANCE
-
- Function: (setf pthread-rwlock-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlockattr-t-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlockattr-t-ptr INSTANCE
-
- Function: (setf pthread-rwlockattr-t-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: pthread-rwlockattr-t-validity INSTANCE
-
- Function: (setf pthread-rwlockattr-t-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: raise-shm-error ()
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: random-name ()
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
- Function: stat-p OBJECT
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat-ptr INSTANCE
-
- Function: (setf stat-ptr) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: stat-validity INSTANCE
-
- Function: (setf stat-validity) VALUE INSTANCE
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Function: to-flags KEYWORDS HASH-TABLE
-
- Package
xyz.shunter.posix-shm
- Source
shm.lisp (file)
6.2.4 Structures
- Structure: __caddr_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
- Structure: __timer_t ()
-
- Package
xyz.shunter.posix-shm.ffi
- Source
ffi.lisp (file)
- Direct superclasses
wrapper (structure)
Appendix A Indexes
A.1 Concepts
| Index Entry | | Section |
|
F | | |
| File, Lisp, posix-shm.asd: | | The posix-shm․asd file |
| File, Lisp, posix-shm/ffi.lisp: | | The posix-shm/ffi․lisp file |
| File, Lisp, posix-shm/shm.lisp: | | The posix-shm/shm․lisp file |
| File, static, posix-shm/spec/shm.h: | | The posix-shm/spec/shm․h file |
|
L | | |
| Lisp File, posix-shm.asd: | | The posix-shm․asd file |
| Lisp File, posix-shm/ffi.lisp: | | The posix-shm/ffi․lisp file |
| Lisp File, posix-shm/shm.lisp: | | The posix-shm/shm․lisp file |
|
M | | |
| Module, posix-shm/spec: | | The posix-shm/spec module |
|
P | | |
| posix-shm.asd: | | The posix-shm․asd file |
| posix-shm/ffi.lisp: | | The posix-shm/ffi․lisp file |
| posix-shm/shm.lisp: | | The posix-shm/shm․lisp file |
| posix-shm/spec: | | The posix-shm/spec module |
| posix-shm/spec/shm.h: | | The posix-shm/spec/shm․h file |
|
S | | |
| Static File, posix-shm/spec/shm.h: | | The posix-shm/spec/shm․h file |
|
A.2 Functions
| Index Entry | | Section |
|
% | | |
| %fchmod : | | Internal functions |
| %mmap : | | Internal functions |
| %shm-open : | | Internal functions |
| %shm-open* : | | Internal functions |
| %var-accessor-*errno* : | | Internal functions |
|
( | | |
| (setf %var-accessor-*errno*) : | | Internal functions |
| (setf pthread-attr-t-ptr) : | | Internal functions |
| (setf pthread-attr-t-validity) : | | Internal functions |
| (setf pthread-barrier-t-ptr) : | | Internal functions |
| (setf pthread-barrier-t-validity) : | | Internal functions |
| (setf pthread-barrierattr-t-ptr) : | | Internal functions |
| (setf pthread-barrierattr-t-validity) : | | Internal functions |
| (setf pthread-cond-t-ptr) : | | Internal functions |
| (setf pthread-cond-t-validity) : | | Internal functions |
| (setf pthread-cond-t.__align) : | | Exported functions |
| (setf pthread-cond-t.__data.__g1_orig_size) : | | Exported functions |
| (setf pthread-cond-t.__data.__g1_start) : | | Exported functions |
| (setf pthread-cond-t.__data.__g1_start32.__high) : | | Exported functions |
| (setf pthread-cond-t.__data.__g1_start32.__low) : | | Exported functions |
| (setf pthread-cond-t.__data.__g_refs[]) : | | Exported functions |
| (setf pthread-cond-t.__data.__g_signals[]) : | | Exported functions |
| (setf pthread-cond-t.__data.__g_size[]) : | | Exported functions |
| (setf pthread-cond-t.__data.__wrefs) : | | Exported functions |
| (setf pthread-cond-t.__data.__wseq) : | | Exported functions |
| (setf pthread-cond-t.__data.__wseq32.__high) : | | Exported functions |
| (setf pthread-cond-t.__data.__wseq32.__low) : | | Exported functions |
| (setf pthread-cond-t.__size[]) : | | Exported functions |
| (setf pthread-condattr-t-ptr) : | | Internal functions |
| (setf pthread-condattr-t-validity) : | | Internal functions |
| (setf pthread-mutex-t-ptr) : | | Internal functions |
| (setf pthread-mutex-t-validity) : | | Internal functions |
| (setf pthread-mutex-t.__align) : | | Exported functions |
| (setf pthread-mutex-t.__data.__count) : | | Exported functions |
| (setf pthread-mutex-t.__data.__elision) : | | Exported functions |
| (setf pthread-mutex-t.__data.__kind) : | | Exported functions |
| (setf pthread-mutex-t.__data.__list.__next) : | | Exported functions |
| (setf pthread-mutex-t.__data.__list.__prev) : | | Exported functions |
| (setf pthread-mutex-t.__data.__lock) : | | Exported functions |
| (setf pthread-mutex-t.__data.__nusers) : | | Exported functions |
| (setf pthread-mutex-t.__data.__owner) : | | Exported functions |
| (setf pthread-mutex-t.__data.__spins) : | | Exported functions |
| (setf pthread-mutex-t.__size[]) : | | Exported functions |
| (setf pthread-mutexattr-t-ptr) : | | Internal functions |
| (setf pthread-mutexattr-t-validity) : | | Internal functions |
| (setf pthread-rwlock-t-ptr) : | | Internal functions |
| (setf pthread-rwlock-t-validity) : | | Internal functions |
| (setf pthread-rwlock-t.__align) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__cur_writer) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__flags) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__pad1[]) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__pad2) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__pad3) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__pad4) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__readers) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__rwelision) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__shared) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__writers) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__writers_futex) : | | Exported functions |
| (setf pthread-rwlock-t.__data.__wrphase_futex) : | | Exported functions |
| (setf pthread-rwlock-t.__size[]) : | | Exported functions |
| (setf pthread-rwlockattr-t-ptr) : | | Internal functions |
| (setf pthread-rwlockattr-t-validity) : | | Internal functions |
| (setf stat-ptr) : | | Internal functions |
| (setf stat-validity) : | | Internal functions |
| (setf stat.st-blksize) : | | Exported functions |
| (setf stat.st-blocks) : | | Exported functions |
| (setf stat.st-dev) : | | Exported functions |
| (setf stat.st-gid) : | | Exported functions |
| (setf stat.st-ino) : | | Exported functions |
| (setf stat.st-mode) : | | Exported functions |
| (setf stat.st-nlink) : | | Exported functions |
| (setf stat.st-rdev) : | | Exported functions |
| (setf stat.st-size) : | | Exported functions |
| (setf stat.st-uid) : | | Exported functions |
| (setf stat.__glibc_reserved[]) : | | Exported functions |
| (setf stat.__pad0) : | | Exported functions |
| (setf __caddr_t-ptr) : | | Internal functions |
| (setf __caddr_t-validity) : | | Internal functions |
| (setf __fsid_t-ptr) : | | Internal functions |
| (setf __fsid_t-validity) : | | Internal functions |
| (setf __fsid_t.__val[]) : | | Exported functions |
| (setf __locale_data-ptr) : | | Internal functions |
| (setf __locale_data-validity) : | | Internal functions |
| (setf __locale_struct-ptr) : | | Internal functions |
| (setf __locale_struct-validity) : | | Internal functions |
| (setf __locale_struct.__ctype_b) : | | Exported functions |
| (setf __locale_struct.__ctype_b*) : | | Exported functions |
| (setf __locale_struct.__ctype_tolower) : | | Exported functions |
| (setf __locale_struct.__ctype_tolower*) : | | Exported functions |
| (setf __locale_struct.__ctype_toupper) : | | Exported functions |
| (setf __locale_struct.__ctype_toupper*) : | | Exported functions |
| (setf __locale_struct.__locales[]) : | | Exported functions |
| (setf __locale_struct.__names[]) : | | Exported functions |
| (setf __locale_struct.__names[]*) : | | Exported functions |
| (setf __locale_t-ptr) : | | Internal functions |
| (setf __locale_t-validity) : | | Internal functions |
| (setf __once_flag-ptr) : | | Internal functions |
| (setf __once_flag-validity) : | | Internal functions |
| (setf __once_flag.__data) : | | Exported functions |
| (setf __pthread_cond_s-ptr) : | | Internal functions |
| (setf __pthread_cond_s-validity) : | | Internal functions |
| (setf __pthread_cond_s.__g1_orig_size) : | | Exported functions |
| (setf __pthread_cond_s.__g1_start) : | | Exported functions |
| (setf __pthread_cond_s.__g1_start32.__high) : | | Exported functions |
| (setf __pthread_cond_s.__g1_start32.__low) : | | Exported functions |
| (setf __pthread_cond_s.__g_refs[]) : | | Exported functions |
| (setf __pthread_cond_s.__g_signals[]) : | | Exported functions |
| (setf __pthread_cond_s.__g_size[]) : | | Exported functions |
| (setf __pthread_cond_s.__wrefs) : | | Exported functions |
| (setf __pthread_cond_s.__wseq) : | | Exported functions |
| (setf __pthread_cond_s.__wseq32.__high) : | | Exported functions |
| (setf __pthread_cond_s.__wseq32.__low) : | | Exported functions |
| (setf __pthread_internal_list-ptr) : | | Internal functions |
| (setf __pthread_internal_list-validity) : | | Internal functions |
| (setf __pthread_internal_list.__next) : | | Exported functions |
| (setf __pthread_internal_list.__prev) : | | Exported functions |
| (setf __pthread_internal_slist-ptr) : | | Internal functions |
| (setf __pthread_internal_slist-validity) : | | Internal functions |
| (setf __pthread_internal_slist.__next) : | | Exported functions |
| (setf __pthread_list_t-ptr) : | | Internal functions |
| (setf __pthread_list_t-validity) : | | Internal functions |
| (setf __pthread_list_t.__next) : | | Exported functions |
| (setf __pthread_list_t.__prev) : | | Exported functions |
| (setf __pthread_mutex_s-ptr) : | | Internal functions |
| (setf __pthread_mutex_s-validity) : | | Internal functions |
| (setf __pthread_mutex_s.__count) : | | Exported functions |
| (setf __pthread_mutex_s.__elision) : | | Exported functions |
| (setf __pthread_mutex_s.__kind) : | | Exported functions |
| (setf __pthread_mutex_s.__list.__next) : | | Exported functions |
| (setf __pthread_mutex_s.__list.__prev) : | | Exported functions |
| (setf __pthread_mutex_s.__lock) : | | Exported functions |
| (setf __pthread_mutex_s.__nusers) : | | Exported functions |
| (setf __pthread_mutex_s.__owner) : | | Exported functions |
| (setf __pthread_mutex_s.__spins) : | | Exported functions |
| (setf __pthread_rwlock_arch_t-ptr) : | | Internal functions |
| (setf __pthread_rwlock_arch_t-validity) : | | Internal functions |
| (setf __pthread_rwlock_arch_t.__cur_writer) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__flags) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__pad1[]) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__pad2) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__pad3) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__pad4) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__readers) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__rwelision) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__shared) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__writers) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__writers_futex) : | | Exported functions |
| (setf __pthread_rwlock_arch_t.__wrphase_futex) : | | Exported functions |
| (setf __pthread_slist_t-ptr) : | | Internal functions |
| (setf __pthread_slist_t-validity) : | | Internal functions |
| (setf __pthread_slist_t.__next) : | | Exported functions |
| (setf __timer_t-ptr) : | | Internal functions |
| (setf __timer_t-validity) : | | Internal functions |
|
_ | | |
| __caddr_t-p : | | Internal functions |
| __caddr_t-ptr : | | Internal functions |
| __caddr_t-validity : | | Internal functions |
| __errno_location : | | Exported functions |
| __fsid_t-p : | | Internal functions |
| __fsid_t-ptr : | | Internal functions |
| __fsid_t-validity : | | Internal functions |
| __fsid_t.__val[] : | | Exported functions |
| __fsid_t.__val[]& : | | Exported functions |
| __getpgid : | | Exported functions |
| __locale_data-p : | | Internal functions |
| __locale_data-ptr : | | Internal functions |
| __locale_data-validity : | | Internal functions |
| __locale_struct-p : | | Internal functions |
| __locale_struct-ptr : | | Internal functions |
| __locale_struct-validity : | | Internal functions |
| __locale_struct.__ctype_b : | | Exported functions |
| __locale_struct.__ctype_b& : | | Exported functions |
| __locale_struct.__ctype_b* : | | Exported functions |
| __locale_struct.__ctype_tolower : | | Exported functions |
| __locale_struct.__ctype_tolower& : | | Exported functions |
| __locale_struct.__ctype_tolower* : | | Exported functions |
| __locale_struct.__ctype_toupper : | | Exported functions |
| __locale_struct.__ctype_toupper& : | | Exported functions |
| __locale_struct.__ctype_toupper* : | | Exported functions |
| __locale_struct.__locales[] : | | Exported functions |
| __locale_struct.__locales[]& : | | Exported functions |
| __locale_struct.__locales[]* : | | Exported functions |
| __locale_struct.__names[] : | | Exported functions |
| __locale_struct.__names[]& : | | Exported functions |
| __locale_struct.__names[]* : | | Exported functions |
| __locale_t-p : | | Internal functions |
| __locale_t-ptr : | | Internal functions |
| __locale_t-validity : | | Internal functions |
| __once_flag-p : | | Internal functions |
| __once_flag-ptr : | | Internal functions |
| __once_flag-validity : | | Internal functions |
| __once_flag.__data : | | Exported functions |
| __once_flag.__data& : | | Exported functions |
| __posix_getopt : | | Exported functions |
| __pthread_cond_s-p : | | Internal functions |
| __pthread_cond_s-ptr : | | Internal functions |
| __pthread_cond_s-validity : | | Internal functions |
| __pthread_cond_s.__g1_orig_size : | | Exported functions |
| __pthread_cond_s.__g1_orig_size& : | | Exported functions |
| __pthread_cond_s.__g1_start : | | Exported functions |
| __pthread_cond_s.__g1_start& : | | Exported functions |
| __pthread_cond_s.__g1_start32 : | | Exported functions |
| __pthread_cond_s.__g1_start32& : | | Exported functions |
| __pthread_cond_s.__g1_start32.__high : | | Exported functions |
| __pthread_cond_s.__g1_start32.__high& : | | Exported functions |
| __pthread_cond_s.__g1_start32.__low : | | Exported functions |
| __pthread_cond_s.__g1_start32.__low& : | | Exported functions |
| __pthread_cond_s.__g_refs[] : | | Exported functions |
| __pthread_cond_s.__g_refs[]& : | | Exported functions |
| __pthread_cond_s.__g_signals[] : | | Exported functions |
| __pthread_cond_s.__g_signals[]& : | | Exported functions |
| __pthread_cond_s.__g_size[] : | | Exported functions |
| __pthread_cond_s.__g_size[]& : | | Exported functions |
| __pthread_cond_s.__wrefs : | | Exported functions |
| __pthread_cond_s.__wrefs& : | | Exported functions |
| __pthread_cond_s.__wseq : | | Exported functions |
| __pthread_cond_s.__wseq& : | | Exported functions |
| __pthread_cond_s.__wseq32 : | | Exported functions |
| __pthread_cond_s.__wseq32& : | | Exported functions |
| __pthread_cond_s.__wseq32.__high : | | Exported functions |
| __pthread_cond_s.__wseq32.__high& : | | Exported functions |
| __pthread_cond_s.__wseq32.__low : | | Exported functions |
| __pthread_cond_s.__wseq32.__low& : | | Exported functions |
| __pthread_internal_list-p : | | Internal functions |
| __pthread_internal_list-ptr : | | Internal functions |
| __pthread_internal_list-validity : | | Internal functions |
| __pthread_internal_list.__next : | | Exported functions |
| __pthread_internal_list.__next& : | | Exported functions |
| __pthread_internal_list.__next* : | | Exported functions |
| __pthread_internal_list.__prev : | | Exported functions |
| __pthread_internal_list.__prev& : | | Exported functions |
| __pthread_internal_list.__prev* : | | Exported functions |
| __pthread_internal_slist-p : | | Internal functions |
| __pthread_internal_slist-ptr : | | Internal functions |
| __pthread_internal_slist-validity : | | Internal functions |
| __pthread_internal_slist.__next : | | Exported functions |
| __pthread_internal_slist.__next& : | | Exported functions |
| __pthread_internal_slist.__next* : | | Exported functions |
| __pthread_list_t-p : | | Internal functions |
| __pthread_list_t-ptr : | | Internal functions |
| __pthread_list_t-validity : | | Internal functions |
| __pthread_list_t.__next : | | Exported functions |
| __pthread_list_t.__next& : | | Exported functions |
| __pthread_list_t.__next* : | | Exported functions |
| __pthread_list_t.__prev : | | Exported functions |
| __pthread_list_t.__prev& : | | Exported functions |
| __pthread_list_t.__prev* : | | Exported functions |
| __pthread_mutex_s-p : | | Internal functions |
| __pthread_mutex_s-ptr : | | Internal functions |
| __pthread_mutex_s-validity : | | Internal functions |
| __pthread_mutex_s.__count : | | Exported functions |
| __pthread_mutex_s.__count& : | | Exported functions |
| __pthread_mutex_s.__elision : | | Exported functions |
| __pthread_mutex_s.__elision& : | | Exported functions |
| __pthread_mutex_s.__kind : | | Exported functions |
| __pthread_mutex_s.__kind& : | | Exported functions |
| __pthread_mutex_s.__list : | | Exported functions |
| __pthread_mutex_s.__list& : | | Exported functions |
| __pthread_mutex_s.__list.__next : | | Exported functions |
| __pthread_mutex_s.__list.__next& : | | Exported functions |
| __pthread_mutex_s.__list.__next* : | | Exported functions |
| __pthread_mutex_s.__list.__prev : | | Exported functions |
| __pthread_mutex_s.__list.__prev& : | | Exported functions |
| __pthread_mutex_s.__list.__prev* : | | Exported functions |
| __pthread_mutex_s.__lock : | | Exported functions |
| __pthread_mutex_s.__lock& : | | Exported functions |
| __pthread_mutex_s.__nusers : | | Exported functions |
| __pthread_mutex_s.__nusers& : | | Exported functions |
| __pthread_mutex_s.__owner : | | Exported functions |
| __pthread_mutex_s.__owner& : | | Exported functions |
| __pthread_mutex_s.__spins : | | Exported functions |
| __pthread_mutex_s.__spins& : | | Exported functions |
| __pthread_rwlock_arch_t-p : | | Internal functions |
| __pthread_rwlock_arch_t-ptr : | | Internal functions |
| __pthread_rwlock_arch_t-validity : | | Internal functions |
| __pthread_rwlock_arch_t.__cur_writer : | | Exported functions |
| __pthread_rwlock_arch_t.__cur_writer& : | | Exported functions |
| __pthread_rwlock_arch_t.__flags : | | Exported functions |
| __pthread_rwlock_arch_t.__flags& : | | Exported functions |
| __pthread_rwlock_arch_t.__pad1[] : | | Exported functions |
| __pthread_rwlock_arch_t.__pad1[]& : | | Exported functions |
| __pthread_rwlock_arch_t.__pad2 : | | Exported functions |
| __pthread_rwlock_arch_t.__pad2& : | | Exported functions |
| __pthread_rwlock_arch_t.__pad3 : | | Exported functions |
| __pthread_rwlock_arch_t.__pad3& : | | Exported functions |
| __pthread_rwlock_arch_t.__pad4 : | | Exported functions |
| __pthread_rwlock_arch_t.__pad4& : | | Exported functions |
| __pthread_rwlock_arch_t.__readers : | | Exported functions |
| __pthread_rwlock_arch_t.__readers& : | | Exported functions |
| __pthread_rwlock_arch_t.__rwelision : | | Exported functions |
| __pthread_rwlock_arch_t.__rwelision& : | | Exported functions |
| __pthread_rwlock_arch_t.__shared : | | Exported functions |
| __pthread_rwlock_arch_t.__shared& : | | Exported functions |
| __pthread_rwlock_arch_t.__writers : | | Exported functions |
| __pthread_rwlock_arch_t.__writers& : | | Exported functions |
| __pthread_rwlock_arch_t.__writers_futex : | | Exported functions |
| __pthread_rwlock_arch_t.__writers_futex& : | | Exported functions |
| __pthread_rwlock_arch_t.__wrphase_futex : | | Exported functions |
| __pthread_rwlock_arch_t.__wrphase_futex& : | | Exported functions |
| __pthread_slist_t-p : | | Internal functions |
| __pthread_slist_t-ptr : | | Internal functions |
| __pthread_slist_t-validity : | | Internal functions |
| __pthread_slist_t.__next : | | Exported functions |
| __pthread_slist_t.__next& : | | Exported functions |
| __pthread_slist_t.__next* : | | Exported functions |
| __stpcpy : | | Exported functions |
| __stpncpy : | | Exported functions |
| __strtok_r : | | Exported functions |
| __timer_t-p : | | Internal functions |
| __timer_t-ptr : | | Internal functions |
| __timer_t-validity : | | Internal functions |
| __xpg_strerror_r : | | Exported functions |
|
C | | |
| close : | | Exported functions |
| copy-pthread-attr-t : | | Internal functions |
| copy-pthread-barrier-t : | | Internal functions |
| copy-pthread-barrierattr-t : | | Internal functions |
| copy-pthread-cond-t : | | Internal functions |
| copy-pthread-condattr-t : | | Internal functions |
| copy-pthread-mutex-t : | | Internal functions |
| copy-pthread-mutexattr-t : | | Internal functions |
| copy-pthread-rwlock-t : | | Internal functions |
| copy-pthread-rwlockattr-t : | | Internal functions |
| copy-stat : | | Internal functions |
| copy-__caddr_t : | | Internal functions |
| copy-__fsid_t : | | Internal functions |
| copy-__locale_data : | | Internal functions |
| copy-__locale_struct : | | Internal functions |
| copy-__locale_t : | | Internal functions |
| copy-__once_flag : | | Internal functions |
| copy-__pthread_cond_s : | | Internal functions |
| copy-__pthread_internal_list : | | Internal functions |
| copy-__pthread_internal_slist : | | Internal functions |
| copy-__pthread_list_t : | | Internal functions |
| copy-__pthread_mutex_s : | | Internal functions |
| copy-__pthread_rwlock_arch_t : | | Internal functions |
| copy-__pthread_slist_t : | | Internal functions |
| copy-__timer_t : | | Internal functions |
|
D | | |
| default-dne-option : | | Internal functions |
|
F | | |
| fchmod : | | Exported functions |
| fchmod : | | Exported functions |
| fchown : | | Exported functions |
| fchown : | | Exported functions |
| flag : | | Internal functions |
| fstat : | | Exported functions |
| fstat : | | Exported functions |
| fstatat : | | Exported functions |
| ftruncate : | | Exported functions |
| Function, %fchmod : | | Internal functions |
| Function, %mmap : | | Internal functions |
| Function, %shm-open : | | Internal functions |
| Function, %shm-open* : | | Internal functions |
| Function, %var-accessor-*errno* : | | Internal functions |
| Function, (setf %var-accessor-*errno*) : | | Internal functions |
| Function, (setf pthread-attr-t-ptr) : | | Internal functions |
| Function, (setf pthread-attr-t-validity) : | | Internal functions |
| Function, (setf pthread-barrier-t-ptr) : | | Internal functions |
| Function, (setf pthread-barrier-t-validity) : | | Internal functions |
| Function, (setf pthread-barrierattr-t-ptr) : | | Internal functions |
| Function, (setf pthread-barrierattr-t-validity) : | | Internal functions |
| Function, (setf pthread-cond-t-ptr) : | | Internal functions |
| Function, (setf pthread-cond-t-validity) : | | Internal functions |
| Function, (setf pthread-cond-t.__align) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g1_orig_size) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g1_start) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g1_start32.__high) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g1_start32.__low) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g_refs[]) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g_signals[]) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__g_size[]) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__wrefs) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__wseq) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__wseq32.__high) : | | Exported functions |
| Function, (setf pthread-cond-t.__data.__wseq32.__low) : | | Exported functions |
| Function, (setf pthread-cond-t.__size[]) : | | Exported functions |
| Function, (setf pthread-condattr-t-ptr) : | | Internal functions |
| Function, (setf pthread-condattr-t-validity) : | | Internal functions |
| Function, (setf pthread-mutex-t-ptr) : | | Internal functions |
| Function, (setf pthread-mutex-t-validity) : | | Internal functions |
| Function, (setf pthread-mutex-t.__align) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__count) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__elision) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__kind) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__list.__next) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__list.__prev) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__lock) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__nusers) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__owner) : | | Exported functions |
| Function, (setf pthread-mutex-t.__data.__spins) : | | Exported functions |
| Function, (setf pthread-mutex-t.__size[]) : | | Exported functions |
| Function, (setf pthread-mutexattr-t-ptr) : | | Internal functions |
| Function, (setf pthread-mutexattr-t-validity) : | | Internal functions |
| Function, (setf pthread-rwlock-t-ptr) : | | Internal functions |
| Function, (setf pthread-rwlock-t-validity) : | | Internal functions |
| Function, (setf pthread-rwlock-t.__align) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__cur_writer) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__flags) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__pad1[]) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__pad2) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__pad3) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__pad4) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__readers) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__rwelision) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__shared) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__writers) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__writers_futex) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__data.__wrphase_futex) : | | Exported functions |
| Function, (setf pthread-rwlock-t.__size[]) : | | Exported functions |
| Function, (setf pthread-rwlockattr-t-ptr) : | | Internal functions |
| Function, (setf pthread-rwlockattr-t-validity) : | | Internal functions |
| Function, (setf stat-ptr) : | | Internal functions |
| Function, (setf stat-validity) : | | Internal functions |
| Function, (setf stat.st-blksize) : | | Exported functions |
| Function, (setf stat.st-blocks) : | | Exported functions |
| Function, (setf stat.st-dev) : | | Exported functions |
| Function, (setf stat.st-gid) : | | Exported functions |
| Function, (setf stat.st-ino) : | | Exported functions |
| Function, (setf stat.st-mode) : | | Exported functions |
| Function, (setf stat.st-nlink) : | | Exported functions |
| Function, (setf stat.st-rdev) : | | Exported functions |
| Function, (setf stat.st-size) : | | Exported functions |
| Function, (setf stat.st-uid) : | | Exported functions |
| Function, (setf stat.__glibc_reserved[]) : | | Exported functions |
| Function, (setf stat.__pad0) : | | Exported functions |
| Function, (setf __caddr_t-ptr) : | | Internal functions |
| Function, (setf __caddr_t-validity) : | | Internal functions |
| Function, (setf __fsid_t-ptr) : | | Internal functions |
| Function, (setf __fsid_t-validity) : | | Internal functions |
| Function, (setf __fsid_t.__val[]) : | | Exported functions |
| Function, (setf __locale_data-ptr) : | | Internal functions |
| Function, (setf __locale_data-validity) : | | Internal functions |
| Function, (setf __locale_struct-ptr) : | | Internal functions |
| Function, (setf __locale_struct-validity) : | | Internal functions |
| Function, (setf __locale_struct.__ctype_b) : | | Exported functions |
| Function, (setf __locale_struct.__ctype_b*) : | | Exported functions |
| Function, (setf __locale_struct.__ctype_tolower) : | | Exported functions |
| Function, (setf __locale_struct.__ctype_tolower*) : | | Exported functions |
| Function, (setf __locale_struct.__ctype_toupper) : | | Exported functions |
| Function, (setf __locale_struct.__ctype_toupper*) : | | Exported functions |
| Function, (setf __locale_struct.__locales[]) : | | Exported functions |
| Function, (setf __locale_struct.__names[]) : | | Exported functions |
| Function, (setf __locale_struct.__names[]*) : | | Exported functions |
| Function, (setf __locale_t-ptr) : | | Internal functions |
| Function, (setf __locale_t-validity) : | | Internal functions |
| Function, (setf __once_flag-ptr) : | | Internal functions |
| Function, (setf __once_flag-validity) : | | Internal functions |
| Function, (setf __once_flag.__data) : | | Exported functions |
| Function, (setf __pthread_cond_s-ptr) : | | Internal functions |
| Function, (setf __pthread_cond_s-validity) : | | Internal functions |
| Function, (setf __pthread_cond_s.__g1_orig_size) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g1_start) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g1_start32.__high) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g1_start32.__low) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g_refs[]) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g_signals[]) : | | Exported functions |
| Function, (setf __pthread_cond_s.__g_size[]) : | | Exported functions |
| Function, (setf __pthread_cond_s.__wrefs) : | | Exported functions |
| Function, (setf __pthread_cond_s.__wseq) : | | Exported functions |
| Function, (setf __pthread_cond_s.__wseq32.__high) : | | Exported functions |
| Function, (setf __pthread_cond_s.__wseq32.__low) : | | Exported functions |
| Function, (setf __pthread_internal_list-ptr) : | | Internal functions |
| Function, (setf __pthread_internal_list-validity) : | | Internal functions |
| Function, (setf __pthread_internal_list.__next) : | | Exported functions |
| Function, (setf __pthread_internal_list.__prev) : | | Exported functions |
| Function, (setf __pthread_internal_slist-ptr) : | | Internal functions |
| Function, (setf __pthread_internal_slist-validity) : | | Internal functions |
| Function, (setf __pthread_internal_slist.__next) : | | Exported functions |
| Function, (setf __pthread_list_t-ptr) : | | Internal functions |
| Function, (setf __pthread_list_t-validity) : | | Internal functions |
| Function, (setf __pthread_list_t.__next) : | | Exported functions |
| Function, (setf __pthread_list_t.__prev) : | | Exported functions |
| Function, (setf __pthread_mutex_s-ptr) : | | Internal functions |
| Function, (setf __pthread_mutex_s-validity) : | | Internal functions |
| Function, (setf __pthread_mutex_s.__count) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__elision) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__kind) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__list.__next) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__list.__prev) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__lock) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__nusers) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__owner) : | | Exported functions |
| Function, (setf __pthread_mutex_s.__spins) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t-ptr) : | | Internal functions |
| Function, (setf __pthread_rwlock_arch_t-validity) : | | Internal functions |
| Function, (setf __pthread_rwlock_arch_t.__cur_writer) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__flags) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__pad1[]) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__pad2) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__pad3) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__pad4) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__readers) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__rwelision) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__shared) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__writers) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__writers_futex) : | | Exported functions |
| Function, (setf __pthread_rwlock_arch_t.__wrphase_futex) : | | Exported functions |
| Function, (setf __pthread_slist_t-ptr) : | | Internal functions |
| Function, (setf __pthread_slist_t-validity) : | | Internal functions |
| Function, (setf __pthread_slist_t.__next) : | | Exported functions |
| Function, (setf __timer_t-ptr) : | | Internal functions |
| Function, (setf __timer_t-validity) : | | Internal functions |
| Function, close : | | Exported functions |
| Function, copy-pthread-attr-t : | | Internal functions |
| Function, copy-pthread-barrier-t : | | Internal functions |
| Function, copy-pthread-barrierattr-t : | | Internal functions |
| Function, copy-pthread-cond-t : | | Internal functions |
| Function, copy-pthread-condattr-t : | | Internal functions |
| Function, copy-pthread-mutex-t : | | Internal functions |
| Function, copy-pthread-mutexattr-t : | | Internal functions |
| Function, copy-pthread-rwlock-t : | | Internal functions |
| Function, copy-pthread-rwlockattr-t : | | Internal functions |
| Function, copy-stat : | | Internal functions |
| Function, copy-__caddr_t : | | Internal functions |
| Function, copy-__fsid_t : | | Internal functions |
| Function, copy-__locale_data : | | Internal functions |
| Function, copy-__locale_struct : | | Internal functions |
| Function, copy-__locale_t : | | Internal functions |
| Function, copy-__once_flag : | | Internal functions |
| Function, copy-__pthread_cond_s : | | Internal functions |
| Function, copy-__pthread_internal_list : | | Internal functions |
| Function, copy-__pthread_internal_slist : | | Internal functions |
| Function, copy-__pthread_list_t : | | Internal functions |
| Function, copy-__pthread_mutex_s : | | Internal functions |
| Function, copy-__pthread_rwlock_arch_t : | | Internal functions |
| Function, copy-__pthread_slist_t : | | Internal functions |
| Function, copy-__timer_t : | | Internal functions |
| Function, default-dne-option : | | Internal functions |
| Function, fchmod : | | Exported functions |
| Function, fchmod : | | Exported functions |
| Function, fchown : | | Exported functions |
| Function, fchown : | | Exported functions |
| Function, flag : | | Internal functions |
| Function, fstat : | | Exported functions |
| Function, fstat : | | Exported functions |
| Function, fstatat : | | Exported functions |
| Function, ftruncate : | | Exported functions |
| Function, lstat : | | Exported functions |
| Function, make-pthread-attr-t : | | Internal functions |
| Function, make-pthread-barrier-t : | | Internal functions |
| Function, make-pthread-barrierattr-t : | | Internal functions |
| Function, make-pthread-cond-t : | | Internal functions |
| Function, make-pthread-condattr-t : | | Internal functions |
| Function, make-pthread-mutex-t : | | Internal functions |
| Function, make-pthread-mutexattr-t : | | Internal functions |
| Function, make-pthread-rwlock-t : | | Internal functions |
| Function, make-pthread-rwlockattr-t : | | Internal functions |
| Function, make-stat : | | Internal functions |
| Function, make-__caddr_t : | | Internal functions |
| Function, make-__fsid_t : | | Internal functions |
| Function, make-__locale_data : | | Internal functions |
| Function, make-__locale_struct : | | Internal functions |
| Function, make-__locale_t : | | Internal functions |
| Function, make-__once_flag : | | Internal functions |
| Function, make-__pthread_cond_s : | | Internal functions |
| Function, make-__pthread_internal_list : | | Internal functions |
| Function, make-__pthread_internal_slist : | | Internal functions |
| Function, make-__pthread_list_t : | | Internal functions |
| Function, make-__pthread_mutex_s : | | Internal functions |
| Function, make-__pthread_rwlock_arch_t : | | Internal functions |
| Function, make-__pthread_slist_t : | | Internal functions |
| Function, make-__timer_t : | | Internal functions |
| Function, mmap : | | Exported functions |
| Function, mmap : | | Exported functions |
| Function, munmap : | | Exported functions |
| Function, munmap : | | Exported functions |
| Function, open-options-to-oflag : | | Internal functions |
| Function, pthread-attr-t-p : | | Internal functions |
| Function, pthread-attr-t-ptr : | | Internal functions |
| Function, pthread-attr-t-validity : | | Internal functions |
| Function, pthread-barrier-t-p : | | Internal functions |
| Function, pthread-barrier-t-ptr : | | Internal functions |
| Function, pthread-barrier-t-validity : | | Internal functions |
| Function, pthread-barrierattr-t-p : | | Internal functions |
| Function, pthread-barrierattr-t-ptr : | | Internal functions |
| Function, pthread-barrierattr-t-validity : | | Internal functions |
| Function, pthread-cond-t-p : | | Internal functions |
| Function, pthread-cond-t-ptr : | | Internal functions |
| Function, pthread-cond-t-validity : | | Internal functions |
| Function, pthread-cond-t.__align : | | Exported functions |
| Function, pthread-cond-t.__align& : | | Exported functions |
| Function, pthread-cond-t.__data : | | Exported functions |
| Function, pthread-cond-t.__data& : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_orig_size : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_orig_size& : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start& : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32 : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32& : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32.__high : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32.__high& : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32.__low : | | Exported functions |
| Function, pthread-cond-t.__data.__g1_start32.__low& : | | Exported functions |
| Function, pthread-cond-t.__data.__g_refs[] : | | Exported functions |
| Function, pthread-cond-t.__data.__g_refs[]& : | | Exported functions |
| Function, pthread-cond-t.__data.__g_signals[] : | | Exported functions |
| Function, pthread-cond-t.__data.__g_signals[]& : | | Exported functions |
| Function, pthread-cond-t.__data.__g_size[] : | | Exported functions |
| Function, pthread-cond-t.__data.__g_size[]& : | | Exported functions |
| Function, pthread-cond-t.__data.__wrefs : | | Exported functions |
| Function, pthread-cond-t.__data.__wrefs& : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq& : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32 : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32& : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32.__high : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32.__high& : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32.__low : | | Exported functions |
| Function, pthread-cond-t.__data.__wseq32.__low& : | | Exported functions |
| Function, pthread-cond-t.__size[] : | | Exported functions |
| Function, pthread-cond-t.__size[]& : | | Exported functions |
| Function, pthread-condattr-t-p : | | Internal functions |
| Function, pthread-condattr-t-ptr : | | Internal functions |
| Function, pthread-condattr-t-validity : | | Internal functions |
| Function, pthread-mutex-t-p : | | Internal functions |
| Function, pthread-mutex-t-ptr : | | Internal functions |
| Function, pthread-mutex-t-validity : | | Internal functions |
| Function, pthread-mutex-t.__align : | | Exported functions |
| Function, pthread-mutex-t.__align& : | | Exported functions |
| Function, pthread-mutex-t.__data : | | Exported functions |
| Function, pthread-mutex-t.__data& : | | Exported functions |
| Function, pthread-mutex-t.__data.__count : | | Exported functions |
| Function, pthread-mutex-t.__data.__count& : | | Exported functions |
| Function, pthread-mutex-t.__data.__elision : | | Exported functions |
| Function, pthread-mutex-t.__data.__elision& : | | Exported functions |
| Function, pthread-mutex-t.__data.__kind : | | Exported functions |
| Function, pthread-mutex-t.__data.__kind& : | | Exported functions |
| Function, pthread-mutex-t.__data.__list : | | Exported functions |
| Function, pthread-mutex-t.__data.__list& : | | Exported functions |
| Function, pthread-mutex-t.__data.__list.__next : | | Exported functions |
| Function, pthread-mutex-t.__data.__list.__next& : | | Exported functions |
| Function, pthread-mutex-t.__data.__list.__next*< |