From: gastal Date: Mon, 5 Mar 2012 14:59:55 +0000 (+0000) Subject: Style fix for ecore exe docs. X-Git-Tag: accepted/2.0/20130306.224007~63^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9be8feed18df73b17fe5563f8280742cb361a2ad;p=profile%2Fivi%2Fecore.git Style fix for ecore exe docs. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@68725 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore/Ecore.h b/src/lib/ecore/Ecore.h index 8c5ea07..c559061 100644 --- a/src/lib/ecore/Ecore.h +++ b/src/lib/ecore/Ecore.h @@ -673,7 +673,8 @@ EAPI void *ecore_event_current_event_get(void); * @{ */ - #define ECORE_EXE_PRIORITY_INHERIT 9999 +/** Inherit priority from parent process */ +#define ECORE_EXE_PRIORITY_INHERIT 9999 EAPI extern int ECORE_EXE_EVENT_ADD; /**< A child process has been added */ EAPI extern int ECORE_EXE_EVENT_DEL; /**< A child process has been deleted (it exited, naming consistent with the rest of ecore). */ diff --git a/src/lib/ecore/ecore_exe.c b/src/lib/ecore/ecore_exe.c index d5465fc..47f8dc9 100644 --- a/src/lib/ecore/ecore_exe.c +++ b/src/lib/ecore/ecore_exe.c @@ -331,15 +331,15 @@ static int run_pri = ECORE_EXE_PRIORITY_INHERIT; * This sets the priority of processes run by ecore_exe_run() and * ecore_exe_pipe_run(). * @li On Windows, the child process is created by default with the - * #ECORE_EXE_WIN32_PRIORITY_NORMAL priority, unless the calling - * process is in #ECORE_EXE_WIN32_PRIORITY_IDLE or - * #ECORE_EXE_WIN32_PRIORITY_BELOW_NORMAL priority. In that case, the + * @ref ECORE_EXE_WIN32_PRIORITY_NORMAL priority, unless the calling + * process is in @ref ECORE_EXE_WIN32_PRIORITY_IDLE or + * @ref ECORE_EXE_WIN32_PRIORITY_BELOW_NORMAL priority. In that case, the * child process inherits this priority. - * @li On other platforms, if set to #ECORE_EXE_PRIORITY_INHERIT child + * @li On other platforms, if set to @ref ECORE_EXE_PRIORITY_INHERIT child * processes inherits the priority of their parent. This is the default. * * @param pri value a Ecore_Exe_Win32_Priority value on Windows, -20 - * to 19 or ECORE_EXE_PRIORITY_INHERIT on other OS. + * to 19 or @ref ECORE_EXE_PRIORITY_INHERIT on other OS. */ EAPI void ecore_exe_run_priority_set(int pri)