File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / fpm / fpm / fpm_env.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (13 years ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php


	/* $Id: fpm_env.h,v 1.1.1.1 2012/02/21 23:48:06 misho Exp $ */
	/* (c) 2007,2008 Andrei Nigmatulin */

#ifndef FPM_ENV_H
#define FPM_ENV_H 1

#include "fpm_worker_pool.h"

#define SETPROCTITLE_PREFIX "php-fpm: "

int fpm_env_init_child(struct fpm_worker_pool_s *wp);
int fpm_env_init_main();
void fpm_env_setproctitle(char *title);

extern char **environ;

#ifndef HAVE_SETENV
int setenv(char *name, char *value, int overwrite);
#endif

#ifndef HAVE_CLEARENV
void clearenv();
#endif

#endif


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>