Explorar el Código

Fixed the order of function attribures

Evgeny Grin (Karlson2k) hace 1 año
padre
commit
a17ff4bbeb
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  1. 1 1
      src/mhd2/daemon_funcs.c
  2. 1 0
      src/mhd2/daemon_funcs.h

+ 1 - 1
src/mhd2/daemon_funcs.c

@@ -68,8 +68,8 @@ mhd_daemon_trigger_itc (struct MHD_Daemon *restrict d)
 #endif /* MHD_USE_THREADS */
 
 
-MHD_INTERNAL
 MHD_NORETURN_ // TODO: implement
+MHD_INTERNAL
 MHD_FN_PAR_NONNULL_ALL_ void
 mhd_daemon_resume_conns (struct MHD_Daemon *restrict d)
 {

+ 1 - 0
src/mhd2/daemon_funcs.h

@@ -67,6 +67,7 @@ mhd_daemon_trigger_itc (struct MHD_Daemon *restrict d);
  * Check whether any resuming connections are pending and resume them
  * @param d the daemon to use
  */
+MHD_NORETURN_ // TODO: implement
 MHD_INTERNAL void
 mhd_daemon_resume_conns (struct MHD_Daemon *restrict d)
 MHD_FN_PAR_NONNULL_ALL_;