Re: Data Structure Serialization

2006-11-02 Thread Joachim Zobel
Am Donnerstag, den 02.11.2006, 12:07 -0700 schrieb David Wortham: > I have one file that opens in a given function. I need to open > another file > and close it about the same time: just before the end of the same > function. > I copy-pasted the code that correctly opens the first file but I am >

Re: Data Structure Serialization - debugging

2006-11-02 Thread Joachim Zobel
Am Donnerstag, den 02.11.2006, 12:07 -0700 schrieb David Wortham: > Any ideas for serialization or opening another file? Or even just > debugging > tips in general? Apache seems like a difficult environment to debug > in Just write a good trace log (with log level APR_DEBUG). If that is of reaso

Data Structure Serialization

2006-11-02 Thread David Wortham
I'd like to know if anyone developing modules has run across a struct-serialization function/library (in C, preferrably well tested with the APR and multiple (file|operating) systems). I am attempting to share data across child processes, but I have a few bugs in my serialization code. I'm reall