-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: falkTX <falktx@falktx.com>
- Loading branch information
Showing
14 changed files
with
127 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/src/server.c b/src/server.c | ||
index 130f6d5..2106b1f 100644 | ||
--- a/src/server.c | ||
+++ b/src/server.c | ||
@@ -1394,7 +1394,10 @@ int lo_server_wait(lo_server s, int timeout) | ||
|
||
int lo_servers_wait(lo_server *s, int *status, int num_servers, int timeout) | ||
{ | ||
- int i, j, k, sched_timeout; | ||
+ int i, j, sched_timeout; | ||
+#ifdef HAVE_POLL | ||
+ int k; | ||
+#endif | ||
|
||
if (!status) | ||
status = alloca(sizeof(int) * num_servers); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff --git a/include/zix/attributes.h b/include/zix/attributes.h | ||
index 518e5fb..c3a5633 100644 | ||
--- a/include/zix/attributes.h | ||
+++ b/include/zix/attributes.h | ||
@@ -19,18 +19,7 @@ | ||
# define ZIX_END_DECLS ///< End public API definitions | ||
#endif | ||
|
||
-// ZIX_API must be used to decorate things in the public API | ||
-#ifndef ZIX_API | ||
-# if defined(_WIN32) && !defined(ZIX_STATIC) && defined(ZIX_INTERNAL) | ||
-# define ZIX_API __declspec(dllexport) | ||
-# elif defined(_WIN32) && !defined(ZIX_STATIC) | ||
-# define ZIX_API __declspec(dllimport) | ||
-# elif defined(__GNUC__) | ||
-# define ZIX_API __attribute__((visibility("default"))) | ||
-# else | ||
-# define ZIX_API | ||
-# endif | ||
-#endif | ||
+#define ZIX_API | ||
|
||
// GCC function attributes | ||
#ifdef __GNUC__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters