libc
Here are 180 public repositories matching this topic...
-
Updated
May 16, 2020 - C
The machine the wiki is on:
Steps to do this:
- Enable wiki on the GitHub project
- Run the migration script
- Upload the wiki
- Fix up any migration errors
- Move examples into examples directory in the main repo
- Provide a redirect script on z88dk.org so google links remain
The posted installation steps for manually installing the CloudABI toolchain with the cloudabi-run utility in Debian/Ubuntu, omits some important requirements:
- yaml2argdata headers need to be installed.
- arpc needs to be installed.
- The libyaml-cpp-dev package needs to be installed.
- python3 needs to be installed.
- pypeg2 needs to be installed.
- e
-
Updated
Apr 27, 2020 - C
We have the openlibm files, so why don't we actually build a libm that can be used alongside libc?
Probably deserves a standalone meson.build file if possible (with wrap?)
-
Updated
Oct 6, 2016 - C
Support C11 free()
With aligned_alloc() in the C11 standard, free() is called to free memory, rather than an equivalent aligned_free()
.
We should update our library with some logic that can be used to correctly call aligned_free() if free() is used instead.
-
Updated
Jun 2, 2020 - C
Documentation
Polese, consider spending some time writing documentation.
Documentation should cover: initialization and state of registers after boot.
How virtual memory is managed and others important algorithms.
-
Updated
Jun 2, 2020 - Objective-C
-
Updated
May 30, 2020 - Python
-
Updated
Jul 6, 2016 - C
-
Updated
Feb 7, 2019 - C
-
Updated
Feb 21, 2020 - Python
-
Updated
Aug 19, 2018 - C
-
Updated
May 10, 2017 - C
Improve this page
Add a description, image, and links to the libc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the libc topic, visit your repo's landing page and select "manage topics."
recvfrom(2) takes an integer
flags
parameter, but it is missing from nix's version:pub fn recvfrom( sockfd: RawFd, buf: &mut [u8] ) -> Result<(usize, Option<SockAddr>)>
The implementation of
recvfrom
unconditionally passes 0 tolibc::recvfrom
's flags parameter. This means I can't do something likeMSG_PEEK
w