mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
49824ee8cb
- fix gc probability algorithm - don't access mod_data directly - initial version of mm support for session data storage This works pretty good, but we need to create the initial mm pool from the parent process/thread. Still looking for a clean way to do that.
14 lines
217 B
C
14 lines
217 B
C
/*
|
|
* To add a PHP session module, #include its header file and
|
|
* add a ps_xxx_ptr in the struct...
|
|
*/
|
|
|
|
#include "mod_files.h"
|
|
#include "mod_mm.h"
|
|
|
|
static ps_module *ps_modules[] = {
|
|
ps_files_ptr,
|
|
ps_mm_ptr,
|
|
};
|
|
|