diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-07-17 00:32:07 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-07-17 00:32:07 -0300 |
commit | aa9cb48bf08af14068178619414590254b263882 (patch) | |
tree | b555f3a48c08862c07ef7518a8ba6c8fa58c1aee /src/nvim/os_unix.c | |
parent | 9d8d2b7fa83fd69d1d616728c505a41acf8fedbb (diff) | |
download | rneovim-aa9cb48bf08af14068178619414590254b263882.tar.gz rneovim-aa9cb48bf08af14068178619414590254b263882.tar.bz2 rneovim-aa9cb48bf08af14068178619414590254b263882.zip |
job: Replace by a better process abstraction layer
- New libuv/pty process abstraction with simplified API and no globals.
- Remove nvim/os/job*. Jobs are now a concept that apply only to programs
spawned by vimscript job* functions.
- Refactor shell.c/channel.c to use the new module, which brings a number of
advantages:
- Simplified API, less code
- No slots in the user job table are used
- Not possible to acidentally receive data from vimscript
- Implement job table in eval.c, which is now a hash table with unilimited job
slots and unique job ids.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index f568f5a7f1..122b3a171d 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -50,7 +50,6 @@ #include "nvim/os/input.h" #include "nvim/os/shell.h" #include "nvim/os/signal.h" -#include "nvim/os/job.h" #include "nvim/msgpack_rpc/helpers.h" #ifdef HAVE_STROPTS_H |