Files
neovim/src/nvim/os/signal.h
Thiago de Arruda 991d3ec1e6 event loop: New abstraction layer with refactored time/signal API
- Add event loop abstraction module under src/nvim/event. The
  src/nvim/event/loop module replaces src/nvim/os/event
- Remove direct dependency on libuv signal/timer API and use the new abstraction
  instead.
- Replace all references to uv_default_loop() by &loop.uv, a new global variable
  that wraps libuv main event loop but allows the event loop functions to be
  reused in other contexts.
2015-07-17 00:19:19 -03:00

8 lines
160 B
C

#ifndef NVIM_OS_SIGNAL_H
#define NVIM_OS_SIGNAL_H
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/signal.h.generated.h"
#endif
#endif // NVIM_OS_SIGNAL_H