-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need wait and waitpid in posix88::unistd #11
Comments
dlrobertson
pushed a commit
to dlrobertson/libc
that referenced
this issue
Oct 31, 2017
gnzlbg
pushed a commit
to gnzlbg/libc
that referenced
this issue
Feb 24, 2019
11: Re-export core::ffi::c_void r=japaric a=jeikabu japaric/cty#10 Without this trying to use bindgen like: ```rust let bindings = bindgen::Builder::default() .header("wrapper.h") .ctypes_prefix("cty") .use_core() .generate(); ``` Results in lots of: ``` error[E0308]: mismatched types --> runng/src/protocol/mod.rs:49:43 | 49 | let res = nng_setopt(socket, opt, topic_ptr, topic_size); | ^^^^^^^^^ expected enum `cty::c_void`, found enum `std::ffi::c_void` | = note: expected type `*const cty::c_void` found type `*const std::ffi::c_void` ``` Co-authored-by: jake <[email protected]>
lvllvl
added a commit
to lvllvl/libc
that referenced
this issue
Jan 7, 2025
# This is the 1st commit message: chore: add labels to FIXMEs # This is the commit message rust-lang#2: change label for .field FIXMEs # This is the commit message rust-lang#3: add fixme csv # This is the commit message rust-lang#4: Update fixmes.csv # This is the commit message rust-lang#5: Update fixmes.csv # This is the commit message rust-lang#6: Update fixmes.csv # This is the commit message rust-lang#7: Update fixmes.csv # This is the commit message rust-lang#8: Update fixmes.csv # This is the commit message rust-lang#9: Update fixmes.csv # This is the commit message rust-lang#10: Update fixmes.csv # This is the commit message rust-lang#11: Update fixmes.csv # This is the commit message rust-lang#12: Update fixmes.csv # This is the commit message rust-lang#13: Update fixmes.csv # This is the commit message rust-lang#14: Update fixmes.csv # This is the commit message rust-lang#15: Update fixmes.csv # This is the commit message rust-lang#16: Update fixmes.csv # This is the commit message rust-lang#17: Update fixmes.csv # This is the commit message rust-lang#18: updates to csv # This is the commit message rust-lang#19: Update fixmes.csv # This is the commit message rust-lang#20: Update fixmes.csv # This is the commit message rust-lang#21: Update fixmes.csv # This is the commit message rust-lang#22: Update fixmes.csv remove hurd" # This is the commit message rust-lang#23: Update fixmes.csv remove "'s
tgross35
pushed a commit
to tgross35/rust-libc
that referenced
this issue
Feb 22, 2025
update syntex_syntax a bit
tgross35
pushed a commit
to tgross35/rust-libc
that referenced
this issue
Feb 22, 2025
Use garando_syntax
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just wondering if you can update this lib to rust @ commit a5cac55be451a32a5956339009c49ac4fcaaef5c, this introduces definitions for
wait()
andwaitpid()
intolibstd::funcs::posix88::unistd
that I need for a project I am working on.Thanks.
The text was updated successfully, but these errors were encountered: