Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 12 Jul 2015 14:32:07 UTC Commit: feca48b59e838dcd6ca4a8d03697495163d73692 https://github.com/geany/geany/commit/feca48b59e838dcd6ca4a8d03697495163d736...
Log Message: ----------- spawn: Move macros documentation so Doxygen can find them
Modified Paths: -------------- src/spawn.h
Modified: src/spawn.h 12 lines changed, 6 insertions(+), 6 deletions(-) =================================================================== @@ -25,15 +25,15 @@ #include <glib.h>
#ifdef G_OS_WIN32 -# define SPAWN_WIFEXITED(status) TRUE /**< non-zero if the child exited normally */ -# define SPAWN_WEXITSTATUS(status) (status) /**< exit status of a child if exited normally */ -# define SPAWN_WIFSIGNALED(status) FALSE /**< non-zero if the child exited due to signal */ +# define SPAWN_WIFEXITED(status) TRUE +# define SPAWN_WEXITSTATUS(status) (status) +# define SPAWN_WIFSIGNALED(status) FALSE #else # include <sys/types.h> # include <sys/wait.h> -# define SPAWN_WIFEXITED(status) WIFEXITED(status) -# define SPAWN_WEXITSTATUS(status) WEXITSTATUS(status) -# define SPAWN_WIFSIGNALED(status) WIFSIGNALED(status) +# define SPAWN_WIFEXITED(status) WIFEXITED(status) /**< non-zero if the child exited normally */ +# define SPAWN_WEXITSTATUS(status) WEXITSTATUS(status) /**< exit status of a child if exited normally */ +# define SPAWN_WIFSIGNALED(status) WIFSIGNALED(status) /**< non-zero if the child exited due to signal */ #endif
G_BEGIN_DECLS
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).