aboutsummaryrefslogtreecommitdiff
path: root/libc/src/stdio/gpu/rename.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-06[libc][GPU] clean up includes (#143203)Michael Jones1-3/+3
The GPU stdio functions were depending on indirect inclusion for some of their dependencies. This patch should fix all of that.
2024-12-02[libc][NFC] Rename RPC opcodes to better reflect their usageJoseph Huber1-1/+1
Summary: RPC_ is a generic prefix here, use LIBC_ to indicate that these are opcodes used to implement the C library
2024-10-15[libc] Remove dependency on `cpp::function` in `rpc.h` (#112422)Joseph Huber1-2/+3
Summary: I'm going to attempt to move the `rpc.h` header to a separate folder that we can install and include outside of `libc`. Before doing this I'm going to try to trim up the file so there's not as many things I need to copy to make it work. This dependency on `cpp::functional` is a low hanging fruit. I only did it so that I could overload the argument of the work function so that passing the id was optional in the lambda, that's not a *huge* deal and it makes it more explicit I suppose.
2024-09-24[libc] Implement the 'rename' function on the GPU (#109814)Joseph Huber1-0/+30
Summary: Straightforward implementation like the other `stdio.h` functions.