Web Development
aprt.txt
Associated article: Using Apache Portable Run-Time
Tags: Global Developer Web Development Design
Published source code accompanying the article by Ryan Bloom in which he examines the Apache Portable Run-Time, a library that is designed to address the Apache web server's portability problems.
Using Apache Portable Run-Time
by Ryan Bloom
Listing One
static void setup_shared_mem(pool *p)
{
#ifdef USE_OS2_SCOREBOARD
...
m=(caddr_t) create_shared_heap("SHAREMEMSCOREBOARD",
#elif defined(USE_POSIX_SCOREBOARD)
...
fd=shm_open(ap_scoreboard_fname, ...


