Changeset 9728
- Timestamp:
- Jun 10, 2008, 5:13:48 PM (16 years ago)
- File:
-
- 1 edited
-
branches/win64/level-1/linux-files.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/win64/level-1/linux-files.lisp
r9657 r9728 1523 1523 (logior #$STARTF_USESTDHANDLES #$STARTF_USESHOWWINDOW)) 1524 1524 (setf (pref si #>STARTUPINFO.wShowWindow) #$SW_HIDE) 1525 (setf (pref si #>STARTUPINFO.hStdInput) (#__get_osfhandle new-in)) 1526 (setf (pref si #>STARTUPINFO.hStdOutput) (#__get_osfhandle new-out)) 1527 (setf (pref si #>STARTUPINFO.hStdError) (#__get_osfhandle new-err)) 1525 (setf (pref si #>STARTUPINFO.hStdInput) 1526 (%int-to-ptr (#__get_osfhandle (or new-in 0)))) 1527 (setf (pref si #>STARTUPINFO.hStdOutput) 1528 (%int-to-ptr (#__get_osfhandle (or new-out 1)))) 1529 (setf (pref si #>STARTUPINFO.hStdError) 1530 (%int-to-ptr (#__get_osfhandle (or new-err 2)))) 1528 1531 (if (zerop (#_CreateProcessW (%null-ptr) 1529 1532 command … … 1536 1539 si 1537 1540 proc-info)) 1538 (error "Process creation failed "))1541 (error "Process creation failed: ~d" (#_GetLastError))) 1539 1542 (#_CloseHandle (pref proc-info #>PROCESS_INFORMATION.hThread)) 1540 1543 (pref proc-info #>PROCESS_INFORMATION.hProcess))))
Note:
See TracChangeset
for help on using the changeset viewer.
