mirror of
https://github.com/git-for-windows/git.git
synced 2026-05-01 02:53:51 -05:00
Implement command options `--run` and `--start` to try to begin listening for file system events. This version defines the thread structure with a single fsmonitor_fs_listen thread to watch for file system events and a simple IPC thread pool to wait for connections from Git clients over a well-known named pipe or Unix domain socket. This version does not actually do anything yet because the backends are still just stubs. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
37 lines
789 B
C
37 lines
789 B
C
#ifndef FSMONITOR_DAEMON_H
|
|
#define FSMONITOR_DAEMON_H
|
|
|
|
#ifdef HAVE_FSMONITOR_DAEMON_BACKEND
|
|
|
|
#include "cache.h"
|
|
#include "dir.h"
|
|
#include "run-command.h"
|
|
#include "simple-ipc.h"
|
|
#include "thread-utils.h"
|
|
|
|
struct fsmonitor_batch;
|
|
struct fsmonitor_token_data;
|
|
|
|
struct fsmonitor_daemon_backend_data; /* opaque platform-specific data */
|
|
|
|
struct fsmonitor_daemon_state {
|
|
pthread_t listener_thread;
|
|
pthread_mutex_t main_lock;
|
|
|
|
struct strbuf path_worktree_watch;
|
|
struct strbuf path_gitdir_watch;
|
|
int nr_paths_watching;
|
|
|
|
struct fsmonitor_token_data *current_token_data;
|
|
|
|
int error_code;
|
|
struct fsmonitor_daemon_backend_data *backend_data;
|
|
|
|
struct ipc_server_data *ipc_server_data;
|
|
|
|
int test_client_delay_ms;
|
|
};
|
|
|
|
#endif /* HAVE_FSMONITOR_DAEMON_BACKEND */
|
|
#endif /* FSMONITOR_DAEMON_H */
|