xref: /PHP-7.4/sapi/fpm/fpm/fpm_unix.h (revision 1ad08256)
1 	/* (c) 2007,2008 Andrei Nigmatulin */
2 
3 #ifndef FPM_UNIX_H
4 #define FPM_UNIX_H 1
5 
6 #include "fpm_worker_pool.h"
7 
8 int fpm_unix_resolve_socket_premissions(struct fpm_worker_pool_s *wp);
9 int fpm_unix_set_socket_premissions(struct fpm_worker_pool_s *wp, const char *path);
10 int fpm_unix_free_socket_premissions(struct fpm_worker_pool_s *wp);
11 
12 int fpm_unix_init_child(struct fpm_worker_pool_s *wp);
13 int fpm_unix_init_main();
14 
15 extern size_t fpm_pagesize;
16 
17 #endif
18