Fix Windows sc_pipe function names
The implementation name was incorrect (it was harmless, because they are not used on Windows).
This commit is contained in:
parent
6a27062f48
commit
52cebe1597
1 changed files with 2 additions and 2 deletions
|
@ -168,7 +168,7 @@ sc_process_close(HANDLE handle) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ssize_t
|
ssize_t
|
||||||
sc_read_pipe(HANDLE pipe, char *data, size_t len) {
|
sc_pipe_read(HANDLE pipe, char *data, size_t len) {
|
||||||
DWORD r;
|
DWORD r;
|
||||||
if (!ReadFile(pipe, data, len, &r, NULL)) {
|
if (!ReadFile(pipe, data, len, &r, NULL)) {
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -177,7 +177,7 @@ sc_read_pipe(HANDLE pipe, char *data, size_t len) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
sc_close_pipe(HANDLE pipe) {
|
sc_pipe_close(HANDLE pipe) {
|
||||||
if (!CloseHandle(pipe)) {
|
if (!CloseHandle(pipe)) {
|
||||||
LOGW("Cannot close pipe");
|
LOGW("Cannot close pipe");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue