mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Run "make autostyle."
This commit is contained in:
@@ -18,4 +18,4 @@ int finish_daemon(const char *desired_cwd);
|
||||
|
||||
bool start_daemon_has_been_called(void);
|
||||
|
||||
#endif
|
||||
#endif /* !defined(TOR_DAEMON_H) */
|
||||
|
||||
@@ -38,4 +38,4 @@ void set_environment_variable_in_smartlist(struct smartlist_t *env_vars,
|
||||
const char *new_var,
|
||||
void (*free_old)(void*),
|
||||
int free_p);
|
||||
#endif
|
||||
#endif /* !defined(TOR_ENV_H) */
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
|
||||
int write_pidfile(const char *filename);
|
||||
|
||||
#endif
|
||||
#endif /* !defined(TOR_PIDFILE_H) */
|
||||
|
||||
@@ -83,7 +83,7 @@ struct process_t {
|
||||
#else
|
||||
/** Our Win32 process handle. */
|
||||
process_win32_t *win32_process;
|
||||
#endif
|
||||
#endif /* !defined(_WIN32) */
|
||||
};
|
||||
|
||||
/** Convert a given process status in <b>status</b> to its string
|
||||
@@ -205,7 +205,7 @@ process_new(const char *command)
|
||||
#else
|
||||
/* Prepare our Win32 process handle. */
|
||||
process->win32_process = process_win32_new();
|
||||
#endif
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
smartlist_add(processes, process);
|
||||
|
||||
@@ -240,7 +240,7 @@ process_free_(process_t *process)
|
||||
#else
|
||||
/* Cleanup our Win32 process handle. */
|
||||
process_win32_free(process->win32_process);
|
||||
#endif
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
smartlist_remove(processes, process);
|
||||
|
||||
@@ -513,7 +513,7 @@ process_get_unix_process(const process_t *process)
|
||||
tor_assert(process->unix_process);
|
||||
return process->unix_process;
|
||||
}
|
||||
#else
|
||||
#else /* !(!defined(_WIN32)) */
|
||||
/** Get the internal handle for Windows backend. */
|
||||
process_win32_t *
|
||||
process_get_win32_process(const process_t *process)
|
||||
@@ -522,7 +522,7 @@ process_get_win32_process(const process_t *process)
|
||||
tor_assert(process->win32_process);
|
||||
return process->win32_process;
|
||||
}
|
||||
#endif
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
/** Write <b>size</b> bytes of <b>data</b> to the given process's standard
|
||||
* input. */
|
||||
|
||||
@@ -111,7 +111,7 @@ struct process_unix_t *process_get_unix_process(const process_t *process);
|
||||
#else
|
||||
struct process_win32_t;
|
||||
struct process_win32_t *process_get_win32_process(const process_t *process);
|
||||
#endif
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
void process_write(process_t *process,
|
||||
const uint8_t *data, size_t size);
|
||||
@@ -140,6 +140,6 @@ STATIC void process_read_buffer(process_t *process,
|
||||
STATIC void process_read_lines(process_t *process,
|
||||
buf_t *buffer,
|
||||
process_read_callback_t callback);
|
||||
#endif /* defined(PROCESS_PRIVATE). */
|
||||
#endif /* defined(PROCESS_PRIVATE) */
|
||||
|
||||
#endif /* defined(TOR_PROCESS_H). */
|
||||
#endif /* !defined(TOR_PROCESS_H) */
|
||||
|
||||
@@ -702,4 +702,4 @@ process_unix_close_file_descriptors(process_unix_t *unix_process)
|
||||
return success;
|
||||
}
|
||||
|
||||
#endif /* defined(_WIN32). */
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
@@ -61,8 +61,8 @@ STATIC int process_unix_read_handle(process_t *,
|
||||
process_unix_handle_t *,
|
||||
buf_t *);
|
||||
STATIC bool process_unix_close_file_descriptors(process_unix_t *);
|
||||
#endif /* defined(PROCESS_UNIX_PRIVATE). */
|
||||
#endif /* defined(PROCESS_UNIX_PRIVATE) */
|
||||
|
||||
#endif /* defined(_WIN32). */
|
||||
#endif /* !defined(_WIN32) */
|
||||
|
||||
#endif /* defined(TOR_PROCESS_UNIX_H). */
|
||||
#endif /* !defined(TOR_PROCESS_UNIX_H) */
|
||||
|
||||
@@ -741,7 +741,7 @@ process_win32_cleanup_handle(process_win32_handle_t *handle)
|
||||
format_win32_error(error_code));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif /* 0 */
|
||||
|
||||
/* Close our handle. */
|
||||
if (handle->pipe != INVALID_HANDLE_VALUE) {
|
||||
@@ -1084,4 +1084,4 @@ tor_join_win_cmdline(const char *argv[])
|
||||
return joined_argv;
|
||||
}
|
||||
|
||||
#endif /* ! defined(_WIN32). */
|
||||
#endif /* defined(_WIN32) */
|
||||
|
||||
@@ -90,8 +90,8 @@ STATIC bool process_win32_handle_read_completion(process_win32_handle_t *,
|
||||
|
||||
STATIC char *format_win_cmdline_argument(const char *arg);
|
||||
STATIC char *tor_join_win_cmdline(const char *argv[]);
|
||||
#endif /* defined(PROCESS_WIN32_PRIVATE). */
|
||||
#endif /* defined(PROCESS_WIN32_PRIVATE) */
|
||||
|
||||
#endif /* ! defined(_WIN32). */
|
||||
#endif /* defined(_WIN32) */
|
||||
|
||||
#endif /* defined(TOR_PROCESS_WIN32_H). */
|
||||
#endif /* !defined(TOR_PROCESS_WIN32_H) */
|
||||
|
||||
@@ -19,4 +19,4 @@ int have_capability_support(void);
|
||||
#define SWITCH_ID_WARN_IF_NO_CAPS (1<<1)
|
||||
int switch_id(const char *user, unsigned flags);
|
||||
|
||||
#endif
|
||||
#endif /* !defined(TOR_SETUID_H) */
|
||||
|
||||
@@ -51,7 +51,7 @@ subsys_winprocess_initialize(void)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else /* !defined(_WIN32) */
|
||||
#else /* !(defined(_WIN32)) */
|
||||
#define WINPROCESS_SYS_ENABLED false
|
||||
#define subsys_winprocess_initialize NULL
|
||||
#endif /* defined(_WIN32) */
|
||||
|
||||
Reference in New Issue
Block a user