libuv/src
Ben Noordhuis fd136da04a unix: remove always_inline attribute
Fixes the following gcc 4.7+ warning:

  ../src/unix/internal.h:105:13: warning: always_inline function might not be
  inlinable [-Wattributes]

gcc wants the always_inline function to be annotated with the 'inline' keyword
which we can't do because we compile in C89 mode.

Using __inline is not an option because that makes clang generate warnings when
-Wlanguage-extension-token is enabled.

Therefore, remove the always_inline attribute altogether and hope that the
compiler is smart enough to inline the functions.
2012-10-15 01:08:47 +02:00
..
unix unix: remove always_inline attribute 2012-10-15 01:08:47 +02:00
win unix, windows: add thread barrier support 2012-10-09 17:30:52 +02:00
fs-poll.c unix, windows: fix memory leak in fs-poll.c 2012-10-01 23:43:32 +02:00
inet.c Add libuv-ified versions of inet_pton and inet_ntop 2012-08-07 01:03:47 +02:00
uv-common.c Add uv_thread_self. 2012-09-13 16:08:07 +02:00
uv-common.h windows: make active and closing handle state independent 2012-08-27 23:56:35 +02:00