diff options
| author | Marco Vanotti <mvanotti@users.noreply.github.com> | 2019-03-19 23:52:40 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-20 07:52:40 +0100 |
| commit | b97faf8e7ae85e6ded4008617982085f85e126e0 (patch) | |
| tree | 84951cc9122b5f82c44256982629fcc0d87f6a93 /executor | |
| parent | 14799fb2ef51ccfbee34fcb8b290bf3441a3791a (diff) | |
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`).
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/common_fuchsia.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common_fuchsia.h b/executor/common_fuchsia.h index 64cd37747..3dbbaff7c 100644 --- a/executor/common_fuchsia.h +++ b/executor/common_fuchsia.h @@ -4,7 +4,7 @@ // This file is shared between executor and csource package. #include <fcntl.h> -#include <lib/fdio/util.h> +#include <lib/fdio/directory.h> #include <poll.h> #include <signal.h> #include <stdlib.h> |
