-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
buffer for stdout is heap-allocated #139006
Comments
The issue is not with I'm pretty sure these 1024 bytes are a lazily-initialized buffer, so this will only happen the first time, not each time Still, it could be argued that this buffer should be in static memory, instead of being allocated on the heap. Also note that the global allocator may be used in the pre-main initialization code.
|
This is not neccessarily related to io, and looks more related to threading, somehow The number in But previously 10 -> 56 nightly-2024-04-11
5->10 in nightly-2022-06-05
4->5 in nightly-2021-09-30
6 ->4 in nightly-2021-01-25
(Although perhaps a better and more useful way to find this out would be by grabbing the backtrace from inside the first @rustbot label: +T-libs +A-allocators +A-runtime |
Is there any particular reason you need this? Otherwise I doubt that this has any significant performance impact, it's really just one extra very well-predicted check per |
We've gotten rid of some pre-main allocations, so the execution now actually reaches |
Side note: By default, C (glibc) also uses heap-allocated buffers for stdin/stdout for standard functions like puts, printf, fgets, etc. |
While playing around with global allocators, I noticed that this code fails.
A message is printed:
memory allocation of 1024 bytes failed
, and then the program terminates. Removing the line withprintln!
fixes this, so I assume that it is trying to allocate 1 KiB and then crashing when it can't.However, there's no need to allocate memory here, because the string to be printed is static. So although this isn't strictly a bug, it certainly might be considered a performance issue in a IO-heavy program.
The text was updated successfully, but these errors were encountered: