mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-24 11:59:58 +00:00
executor: update fdio import path
The Fuchsia team is going to remove the `lib/fdio/util.h` library. They have already moved all the functions to new header files. I have seen that fuchsia uses `fdio_service_connect`, which has been moved to the `lib/fdio/directory.h` header file. This commit just changes the import path in the fuchsia executor, and in the corresponding generated go file (I made that change by running `make generate`).
This commit is contained in:
parent
14799fb2ef
commit
b97faf8e7a
@ -4,7 +4,7 @@
|
|||||||
// This file is shared between executor and csource package.
|
// This file is shared between executor and csource package.
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <lib/fdio/util.h>
|
#include <lib/fdio/directory.h>
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -743,7 +743,7 @@ static int do_sandbox_setuid(void)
|
|||||||
#elif GOOS_fuchsia
|
#elif GOOS_fuchsia
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <lib/fdio/util.h>
|
#include <lib/fdio/directory.h>
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user