mirror of
https://github.com/php/php-src.git
synced 2026-04-20 14:31:06 +02:00
18 lines
364 B
C
18 lines
364 B
C
|
|
/* $Id: fpm_unix.h,v 1.8 2008/05/25 13:21:13 anight Exp $ */
|
|
/* (c) 2007,2008 Andrei Nigmatulin */
|
|
|
|
#ifndef FPM_UNIX_H
|
|
#define FPM_UNIX_H 1
|
|
|
|
#include "fpm_worker_pool.h"
|
|
|
|
int fpm_unix_resolve_socket_premissions(struct fpm_worker_pool_s *wp);
|
|
int fpm_unix_init_child(struct fpm_worker_pool_s *wp);
|
|
int fpm_unix_init_main();
|
|
|
|
extern size_t fpm_pagesize;
|
|
|
|
#endif
|
|
|