index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
os
/
os2
/
process.odin
Commit message (
Collapse
)
Author
Age
Files
Lines
*
core:os -> core:os/old && core:os/os2 -> core:os
Jeroen van Rijn
6 days
1
-548
/
+0
|
*
In the middle of porting core:testing
Jeroen van Rijn
7 days
1
-0
/
+15
|
*
Only call `get_args()` if `args` is actually used by using an indirect value
gingerBill
2025-12-16
1
-2
/
+8
|
*
use `runtime.exit` for `os2.exit`
gingerBill
2025-10-31
1
-1
/
+1
|
*
Make `get_args` contextless
gingerBill
2025-08-08
1
-1
/
+8
|
*
don't need to hang on to the null handle
laytan
2025-05-06
1
-2
/
+0
|
*
close null_handle
Laytan
2025-05-06
1
-12
/
+3
|
*
Fix os2/process defer error.
Jeroen van Rijn
2025-04-07
1
-2
/
+3
|
*
General clean up of code
gingerBill
2025-01-01
1
-1
/
+10
|
*
reset n before stderr path too
Laytan Laats
2024-10-05
1
-0
/
+1
|
*
Don't append to buffer if nothing was read
flysand7
2024-10-05
1
-2
/
+2
|
*
better error handling
Laytan
2024-10-04
1
-12
/
+17
|
*
reset err
Laytan
2024-10-04
1
-0
/
+2
|
*
wait instead of kill
Laytan
2024-10-04
1
-2
/
+1
|
*
Revert "add some debug logs"
Laytan
2024-10-04
1
-10
/
+0
|
|
|
|
This reverts commit 31ee829b44be7b1e789864b0fa616a78db98b672.
*
add some debug logs
Laytan
2024-10-04
1
-0
/
+10
|
*
make sure stdout and stderr always point to allocation
Laytan
2024-10-04
1
-2
/
+2
|
*
satisfy -vet
Laytan Laats
2024-10-04
1
-1
/
+1
|
*
kill process if waiting didn't make it exit to avoid a zombie
Laytan Laats
2024-10-04
1
-0
/
+1
|
*
general cleanup
Laytan Laats
2024-10-04
1
-11
/
+11
|
*
use dynamic array instead of string builder
Laytan Laats
2024-10-04
1
-10
/
+9
|
*
kill process if there was an error during reading to not leave a zombie
Laytan Laats
2024-10-04
1
-40
/
+43
|
*
fix use-after-free - closing wrong pipe
Laytan Laats
2024-10-03
1
-1
/
+1
|
*
fix os2.process_exec on non-windows and add a smoke test
Laytan Laats
2024-10-03
1
-32
/
+44
|
*
adjust docs
flysand7
2024-09-29
1
-6
/
+3
|
*
[os2/process]: Implement process_exec
flysand7
2024-09-28
1
-0
/
+90
|
*
[os2/process]: Unindent doc comments
flysand7
2024-09-28
1
-124
/
+123
|
*
Merge pull request #4136 from flysand7/process-info-fix
Laytan
2024-08-26
1
-13
/
+13
|
\
|
|
|
|
[os2/process]: Don't free process info fields in partial success scenarios
|
*
[os2/process]: Fix typo on doc comments
flysand7
2024-08-27
1
-3
/
+3
|
|
|
*
[os2/process]: Adjust documentation for process info
flysand7
2024-08-26
1
-13
/
+13
|
|
*
|
os2: propogate errors from execv functions to parent
Laytan Laats
2024-08-25
1
-0
/
+1
|
/
*
os2: initial implementation for Darwin&BSDs, process API is only thing ↵
Laytan Laats
2024-08-14
1
-8
/
+14
|
|
|
|
incomplete
*
Add @(require_results) where needed
gingerBill
2024-07-16
1
-1
/
+16
|
*
General clean up of the os2/process_windows.odin code
gingerBill
2024-07-16
1
-5
/
+3
|
*
[os2/process]: Make get_args() private and use heap_allocator
flysand7
2024-07-15
1
-10
/
+2
|
*
[os2/process]: Implement missing functionality, update docs
flysand7
2024-07-15
1
-6
/
+9
|
*
[os2/process]: Implement process_kill
flysand7
2024-07-15
1
-40
/
+10
|
*
[os2/process]: Refactor process_info procs, add process_info_by_handle
flysand7
2024-07-15
1
-10
/
+39
|
*
[os2/process]: Adjust docs on process_close function
flysand7
2024-07-15
1
-1
/
+2
|
*
[os2/process]: Implement process creation procedures
flysand7
2024-07-15
1
-19
/
+146
|
*
[os2/process]: Improve documentation for *process_info() family of function
flysand7
2024-07-15
1
-5
/
+22
|
*
[os2/process] Added process_info() procedure
flysand7
2024-07-15
1
-48
/
+110
|
*
Rebase master
flysand7
2024-07-15
1
-5
/
+18
|
*
[os2/process]: Add process list function
flysand7
2024-07-15
1
-0
/
+7
|
*
[os2/process]: Fill in basic functions
flysand7
2024-07-15
1
-8
/
+78
|
*
Replace `core:*` to `base:*` where appropriate
gingerBill
2024-01-28
1
-1
/
+1
|
*
Go to a `File` based approach over `Handle` based
gingerBill
2022-05-05
1
-1
/
+1
|
*
Replace `sync` with `sync2`
gingerBill
2022-03-30
1
-1
/
+1
|
*
Strip semicolons
gingerBill
2021-09-19
1
-18
/
+19
|
*
Mockup of the new `package os` interface (incomplete and non-functioning)
gingerBill
2021-04-14
1
-0
/
+101