mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-04 10:58:28 +00:00
cleanups
This commit is contained in:
parent
a26eb6f94a
commit
9b47a1f8fe
24
inotify.c
24
inotify.c
@ -222,10 +222,7 @@ handle_event(
|
|||||||
// and overflow happened, tells the runner
|
// and overflow happened, tells the runner
|
||||||
load_runner_func( L, "overflow" );
|
load_runner_func( L, "overflow" );
|
||||||
|
|
||||||
if( lua_pcall( L, 0, 0, -2 ) )
|
if( lua_pcall( L, 0, 0, -2 ) ) exit( -1 );
|
||||||
{
|
|
||||||
exit( -1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
lua_pop( L, 1 );
|
lua_pop( L, 1 );
|
||||||
|
|
||||||
@ -384,10 +381,7 @@ handle_event(
|
|||||||
lua_pushnil( L );
|
lua_pushnil( L );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( lua_pcall( L, 7, 0, -9 ) )
|
if( lua_pcall( L, 7, 0, -9 ) ) exit( -1 );
|
||||||
{
|
|
||||||
exit( -1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
lua_pop( L, 1 );
|
lua_pop( L, 1 );
|
||||||
|
|
||||||
@ -421,10 +415,7 @@ inotify_ready(
|
|||||||
// sanity check
|
// sanity check
|
||||||
if( obs->fd != inotify_fd )
|
if( obs->fd != inotify_fd )
|
||||||
{
|
{
|
||||||
logstring(
|
logstring( "Error", "internal failure, inotify_fd != obs->fd" );
|
||||||
"Error",
|
|
||||||
"internal failure, inotify_fd != ob->fd"
|
|
||||||
);
|
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -574,13 +565,6 @@ open_inotify( lua_State *L )
|
|||||||
|
|
||||||
close_exec_fd( inotify_fd );
|
close_exec_fd( inotify_fd );
|
||||||
non_block_fd( inotify_fd );
|
non_block_fd( inotify_fd );
|
||||||
|
observe_fd( inotify_fd, inotify_ready, NULL, inotify_tidy, NULL );
|
||||||
observe_fd(
|
|
||||||
inotify_fd,
|
|
||||||
inotify_ready,
|
|
||||||
NULL,
|
|
||||||
inotify_tidy,
|
|
||||||
NULL
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user