Skip to content
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

Replace libc functions with WinAPIs on Windows #20861

Closed
klutzy opened this issue Jan 10, 2015 · 2 comments
Closed

Replace libc functions with WinAPIs on Windows #20861

klutzy opened this issue Jan 10, 2015 · 2 comments
Labels
O-windows Operating system: Windows

Comments

@klutzy
Copy link
Contributor

klutzy commented Jan 10, 2015

We use libc functions on various Windows routines, but they are just convenient wrappers of WinAPI and there's usually no critical reason to use them.

Also, the wrapper has its own runtime state so it adds additional complexity, so it's better to use WinAPI than libc functions in general.
For example, msvcrt has libc errno variable, but it's not Windows' native error code value (GetLastError()) therefore unrelated to std::os::errno().
Another example is that msvcrt manages its own "C locale", distinct to Windows locale.

Here's some libc uses (not complete):

  • rt/rust_builtin.c: e.g. gmtime, localtime. (seems like they are unused now)
  • liballoc/heap.rs uses malloc, realloc, free if jemalloc is disabled. HeapAlloc is better?
  • libstd/sys/windows/: e.g. fs.rs uses open_osfhandle.

See also Support: Win32 Equivalents for C Run-Time Functions.

@retep998
Copy link
Member

I don't know why we insist on providing malloc for interaction with C libraries when msdn explicitly states:

The malloc function has the disadvantage of being run-time dependent.

I feel that if users want to do FFI with C libraries they are responsible for binding the appropriate allocation methods and ensuring they work correctly. Rust should not try to guarantee that the allocator it uses is compatible with non-Rust libraries when there are a plethora of incompatible allocators and even malloc itself is runtime dependent.

@alexcrichton alexcrichton added the O-windows Operating system: Windows label Jan 11, 2015
alexcrichton added a commit to alexcrichton/rust that referenced this issue Jan 21, 2015
@alexcrichton
Copy link
Member

I believe that this has basically been done to the fullest extent possible, so yay!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
O-windows Operating system: Windows
Projects
None yet
Development

No branches or pull requests

3 participants