@@ -78,25 +78,25 @@ void uwsgi_master_fifo_prepare() {
7878 uwsgi_fifo_table ['8' ] = uwsgi_fifo_set_slot_eight ;
7979 uwsgi_fifo_table ['9' ] = uwsgi_fifo_set_slot_nine ;
8080
81- uwsgi_fifo_table ['-' ] = uwsgi_cheaper_decrease ;
82- uwsgi_fifo_table ['+' ] = uwsgi_cheaper_increase ;
83- uwsgi_fifo_table ['B' ] = vassal_sos ;
84- uwsgi_fifo_table ['c' ] = uwsgi_chain_reload ;
85- uwsgi_fifo_table ['C' ] = uwsgi_go_cheap ;
81+ uwsgi_fifo_table ['-' ] = ( void ( * )( int )) uwsgi_cheaper_decrease ;
82+ uwsgi_fifo_table ['+' ] = ( void ( * )( int )) uwsgi_cheaper_increase ;
83+ uwsgi_fifo_table ['B' ] = ( void ( * )( int )) vassal_sos ;
84+ uwsgi_fifo_table ['c' ] = ( void ( * )( int )) uwsgi_chain_reload ;
85+ uwsgi_fifo_table ['C' ] = ( void ( * )( int )) uwsgi_go_cheap ;
8686 uwsgi_fifo_table ['E' ] = emperor_rescan ;
87- uwsgi_fifo_table ['f' ] = uwsgi_refork_master ;
88- uwsgi_fifo_table ['l' ] = uwsgi_log_reopen ;
89- uwsgi_fifo_table ['L' ] = uwsgi_log_rotate ;
87+ uwsgi_fifo_table ['f' ] = ( void ( * )( int )) uwsgi_refork_master ;
88+ uwsgi_fifo_table ['l' ] = ( void ( * )( int )) uwsgi_log_reopen ;
89+ uwsgi_fifo_table ['L' ] = ( void ( * )( int )) uwsgi_log_rotate ;
9090 uwsgi_fifo_table ['p' ] = suspend_resume_them_all ;
91- uwsgi_fifo_table ['P' ] = uwsgi_update_pidfiles ;
91+ uwsgi_fifo_table ['P' ] = ( void ( * )( int )) uwsgi_update_pidfiles ;
9292 uwsgi_fifo_table ['q' ] = gracefully_kill_them_all ;
9393 uwsgi_fifo_table ['Q' ] = kill_them_all ;
9494 uwsgi_fifo_table ['r' ] = grace_them_all ;
9595 uwsgi_fifo_table ['R' ] = reap_them_all ;
9696 uwsgi_fifo_table ['s' ] = stats ;
9797 uwsgi_fifo_table ['S' ] = subscriptions_blocker ;
98- uwsgi_fifo_table ['w' ] = uwsgi_reload_workers ;
99- uwsgi_fifo_table ['W' ] = uwsgi_brutally_reload_workers ;
98+ uwsgi_fifo_table ['w' ] = ( void ( * )( int )) uwsgi_reload_workers ;
99+ uwsgi_fifo_table ['W' ] = ( void ( * )( int )) uwsgi_brutally_reload_workers ;
100100
101101}
102102
0 commit comments