Hi Bram,
2016/2/7 Sun 22:28:08 UTC+9 Bram Moolenaar wrote:
> Patch 7.4.1274
> Problem: Cannot run a job.
> Solution: Add job_start(), job_status() and job_stop(). Currently only works
> for Unix.
> Files: eval.c, structs.h, runtime/doc/eval.txt, src/os_unix.c,
> src/proto/os_unix.pro, src/feature.h, src/version.c,
> src/testdir/test_channel.vim
> + /*
> + * Structure to hold info about a Job.
> + */
> + struct jobvar_S
> + {
> + #ifdef UNIX
> + pid_t jv_pid;
> + int jv_exitval;
> + #endif
> + #ifdef WIN32
> + PROCESS_INFORMATION jf_pi;
> + #endif
> + jobstatus_T jv_status;
> +
> + int jv_refcount; /* reference count */
> + };
Why only jf_pi is prefixed "jf_"? Other members have a prefix "jv_".
Is this intended or just a mistake?
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.