mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 07:51:56 +00:00
Previously, POSIX function names were aliased to zsock_ function names using, for example: #define connect zsock_connect This caused the C preprocessor to replace any symbol named 'connect', whether a function or not, in all source code which included socket.h, with 'zsock_connect'. This generated unintended code where the symbol 'connect' was used as the name of a structure field (as in mqtt.h). This new inline definition is applied to all the POSIX function symbols, with the exception of fcntl, a redefinition of which would conflict with the definiton in the toolchain's fcntl.h. Fixes #5817 Signed-off-by: Gil Pitney <gil.pitney@linaro.org> |
||
---|---|---|
.. | ||
arp.h | ||
bt.h | ||
buf.h | ||
coap_link_format.h | ||
coap.h | ||
dhcpv4.h | ||
dns_resolve.h | ||
ethernet.h | ||
hostname.h | ||
http_parser_state.h | ||
http_parser_url.h | ||
http_parser.h | ||
http.h | ||
ieee802154_mgmt.h | ||
ieee802154_radio.h | ||
ieee802154.h | ||
lwm2m.h | ||
mii.h | ||
mqtt_types.h | ||
mqtt.h | ||
net_app.h | ||
net_context.h | ||
net_core.h | ||
net_event.h | ||
net_if.h | ||
net_ip.h | ||
net_l2.h | ||
net_linkaddr.h | ||
net_mgmt.h | ||
net_offload.h | ||
net_pkt.h | ||
net_stats.h | ||
openthread.h | ||
sntp.h | ||
socket.h | ||
trickle.h | ||
udp.h |