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:
Marco Vanotti 2019-03-19 23:52:40 -07:00 committed by Dmitry Vyukov
parent 14799fb2ef
commit b97faf8e7a
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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>