Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/asio/port/include/asio/detail/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@

#include "sys/socket.h"
#include "socketpair.h"
#include "asio_stub.hpp"

#include_next "asio/detail/config.hpp"
9 changes: 9 additions & 0 deletions components/asio/port/include/asio_stub.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <signal.h>

extern "C" int pthread_sigmask(int, const sigset_t *, sigset_t *);
Loading