Updated documentation string.
This commit is contained in:
parent
237bbe0fbe
commit
1a34e55d22
2 changed files with 8 additions and 9 deletions
|
@ -98,14 +98,14 @@ typedef struct Page_s Page;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This is the type of buffer manager that is being used.
|
This is the type of buffer manager that is being used.
|
||||||
Before Stasis is intialized, it will be set to a default value.
|
|
||||||
|
|
||||||
|
Before Stasis is intialized it will be set to a default value.
|
||||||
It may be changed before Tinit() is called, or overridden at
|
It may be changed before Tinit() is called, or overridden at
|
||||||
compile time by defining USE_BUFFER_MANAGER
|
compile time by defining USE_BUFFER_MANAGER.
|
||||||
|
|
||||||
(eg: gcc ... -DUSE_BUFFER_MANAGER=BUFFER_MANAGER_FOO)
|
(eg: gcc ... -DUSE_BUFFER_MANAGER=BUFFER_MANAGER_FOO)
|
||||||
|
|
||||||
@see constants.h for a list of recognized log implementations.
|
@see constants.h for a list of recognized buffer manager implementations. (The constants are named BUFFER_MANAGER_*)
|
||||||
|
|
||||||
*/
|
*/
|
||||||
extern int bufferManagerType;
|
extern int bufferManagerType;
|
||||||
|
|
|
@ -85,16 +85,15 @@ typedef struct {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This is the log implementation that is being used.
|
This is the log implementation that is being used.
|
||||||
Before Stasis is intialized, it will be set to a default value.
|
|
||||||
|
|
||||||
|
Before Stasis is intialized it will be set to a default value.
|
||||||
It may be changed before Tinit() is called by assigning to it.
|
It may be changed before Tinit() is called by assigning to it.
|
||||||
|
The default can be overridden at compile time by defining
|
||||||
The default can be overriddent at compile time by defining
|
USE_LOGGER.
|
||||||
USE_LOGGER
|
|
||||||
|
|
||||||
(eg: gcc ... -DUSE_LOGGER=LOG_TO_FOO)
|
(eg: gcc ... -DUSE_LOGGER=LOG_TO_FOO)
|
||||||
|
|
||||||
@see constants.h for a list of recognized log implementations.
|
@see constants.h for a list of recognized log implementations. (The constants are named LOG_TO_*)
|
||||||
|
|
||||||
*/
|
*/
|
||||||
extern int loggerType;
|
extern int loggerType;
|
||||||
|
|
Loading…
Reference in a new issue