From 552ba35da5f3d432faf7fe33a635d1154e946896 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 23 Oct 2017 18:03:23 +0800 Subject: [PATCH] add missing ioctl declaration Previously ioctl was declared as a macro in lwip/sockets.h. Disabling LWIP_POSIX_SOCKETS_IO_NAMES removed that declaration. This adds sys/ioctl.h file and the missing declaration. Also adds missing includes in vfs.c. --- components/lwip/include/lwip/port/lwipopts.h | 1 + components/vfs/include/sys/ioctl.h | 18 ++++++++++++++++++ components/vfs/vfs.c | 4 ++++ 3 files changed, 23 insertions(+) create mode 100644 components/vfs/include/sys/ioctl.h diff --git a/components/lwip/include/lwip/port/lwipopts.h b/components/lwip/include/lwip/port/lwipopts.h index 88f4b1184..6f56f263e 100644 --- a/components/lwip/include/lwip/port/lwipopts.h +++ b/components/lwip/include/lwip/port/lwipopts.h @@ -37,6 +37,7 @@ #include #include #include +#include #include "esp_task.h" #include "esp_system.h" #include "sdkconfig.h" diff --git a/components/vfs/include/sys/ioctl.h b/components/vfs/include/sys/ioctl.h new file mode 100644 index 000000000..95bad9818 --- /dev/null +++ b/components/vfs/include/sys/ioctl.h @@ -0,0 +1,18 @@ +// Copyright 2015-2017 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#pragma once + +int ioctl(int fd, int request, ...); + diff --git a/components/vfs/vfs.c b/components/vfs/vfs.c index 2a69df78a..5dbd462c2 100644 --- a/components/vfs/vfs.c +++ b/components/vfs/vfs.c @@ -16,6 +16,10 @@ #include #include #include +#include +#include +#include +#include #include "esp_vfs.h" #include "esp_log.h"