Expand description
c-gull is a libc implementation. It is an implementation of the ABI described by the libc crate.
It is implemented in terms of crates written in Rust, such as c-scape, rustix, origin, libm, realpath-ext, tz-rs, printf-compat, num-complex, and posix-regex.
Currently it only supports *-*-linux-gnu
ABIs, though other ABIs could be
added in the future. And currently this mostly focused on features needed by
Rust programs, so it doesn’t have all the C-idiomatic things like qsort
yet,
but they could be added in the future.
The goal is to have very little code in c-gull itself, by factoring out all of the significant functionality into independent crates with more Rust-idiomatic APIs, with c-gull just wrapping those APIs to implement the C ABIs.
This is currently highly experimental, incomplete, and some things aren’t optimized.
§c-gull’s two modes
c-gull has two main cargo features: “take-charge” and “coexist-with-libc”. One of these must be enabled.
In “take-charge” mode, c-gull takes charge of the process, handling program
startup (via Origin) providing malloc
(via c-scape), and other things. This
requires some additional setup; see the c-gull-example example crate for
more details.
In “coexist-with-libc” mode, c-gull can be used as a drop-in (partial) libc replacement, provided you’re using nightly Rust. To use it, just change your typical libc dependency in Cargo.toml to this:
libc = { version = "<c-gull version>", package = "c-gull", features = ["coexist-with-libc"] }
and c-gull will replace as many of the system libc implementation with its own
implementations as it can. In particular, it can’t replace malloc
or any of
the pthread functions in this configuration, but it can replace many other
things. See the libc-replacement example for more details.
Structs§
- af_
alg_ iv Deprecated WARNING: ThePartialEq
,Eq
andHash
implementations of this type are unsound and will be removed in the future.
Enums§
- Equivalent to C’s
void
type when used as a pointer.
Constants§
- maximum number of services provided on the same listening port
- ENOATTR
Deprecated - IP6 Auth Header
- IP Payload Comp. Protocol
- DCCP
- IP6 destination option
- exterior gateway protocol
- encapsulation header
- IP6 Encap Sec. Payload
- Ethernet-within-IPv6 encapsulation.
- IP6 fragmentation header
- General Routing Encap.
- Hop-by-hop option header
- xns idp
- group mgmt protocol
- for compatibility
- IPPROT
O_ MAX Deprecated - Multipath TCP
- IP6 no next header
- Protocol indep. multicast
- pup
- raw IP packet
- IP6 routing header
- resource reservation
- SCTP
- tp-4 w/ class negotiation
- RLIMI
T_ NLIMITS Deprecated - RLIM_
NLIMITS Deprecated - SIGUNUSED
Deprecated - VMADD
R_ CID_ RESERVED Deprecated
Functions§
- abs⚠
- acct⚠
- atof⚠
- atoi⚠
- atol⚠
- bind⚠
- brk⚠
- dup⚠
- dup2⚠
- dup3⚠
- exit⚠
- feof⚠
- fork⚠
- free⚠
- ftok⚠
- glob⚠
- GNU version of
basename(3)
, defined instring.h
. - iopl⚠
- kill⚠
- labs⚠
- link⚠
- mmap⚠
- nice⚠
- open⚠
- pipe⚠
- poll⚠
- POSIX version of
basename(3)
, defined inlibgen.h
. - puts⚠
- rand⚠
- read⚠
- The 64-bit libc on Solaris and illumos only has readdir_r. If a 32-bit Solaris or illumos target is ever created, it should use __posix_readdir_r. See libc(3LIB) on Solaris or illumos: https://illumos.org/man/3lib/libc https://docs.oracle.com/cd/E36784_01/html/E36873/libc-3lib.html https://www.unix.com/man-page/opensolaris/3LIB/libc/
- recv⚠
- sbrk⚠
- send⚠
- stat⚠
- sync⚠
- tee⚠
- time⚠
- vfork⚠
Deprecated - wait⚠
Type Aliases§
- int8_t
Deprecated - int16_t
Deprecated - int32_t
Deprecated - int64_t
Deprecated - uint8_t
Deprecated - uint16_
t Deprecated - uint32_
t Deprecated - uint64_
t Deprecated