|
||||
File indexing completed on 2025-01-18 10:02:26
0001 /* Copyright libuv project contributors. All rights reserved. 0002 * 0003 * Permission is hereby granted, free of charge, to any person obtaining a copy 0004 * of this software and associated documentation files (the "Software"), to 0005 * deal in the Software without restriction, including without limitation the 0006 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 0007 * sell copies of the Software, and to permit persons to whom the Software is 0008 * furnished to do so, subject to the following conditions: 0009 * 0010 * The above copyright notice and this permission notice shall be included in 0011 * all copies or substantial portions of the Software. 0012 * 0013 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0014 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0015 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 0016 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 0017 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 0018 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 0019 * IN THE SOFTWARE. 0020 */ 0021 0022 #ifndef UV_POSIX_H 0023 #define UV_POSIX_H 0024 0025 #define UV_PLATFORM_LOOP_FIELDS \ 0026 struct pollfd* poll_fds; \ 0027 size_t poll_fds_used; \ 0028 size_t poll_fds_size; \ 0029 unsigned char poll_fds_iterating; \ 0030 0031 #endif /* UV_POSIX_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |