Provided by: elektra-doc_0.8.14-5_all 

NAME
deprecated - Deprecated List
globalScope> Global KEY_ATIME
do not use
globalScope> Global KEY_CTIME
do not use
globalScope> Global KEY_DIR
do not use
globalScope> Global KEY_GID
do not use
globalScope> Global KEY_MODE
do not use
globalScope> Global KEY_MTIME
do not use
globalScope> Global KEY_UID
do not use
globalScope> Global keyGetATime (const Key *key)
This API is obsolete.
globalScope> Global keyGetCTime (const Key *key)
This API is obsolete.
globalScope> Global keyGetGID (const Key *key)
This API is obsolete.
globalScope> Global keyGetMode (const Key *key)
This API is obsolete.
globalScope> Global keyGetMTime (const Key *key)
This API is obsolete.
globalScope> Global keyGetUID (const Key *key)
This API is obsolete.
globalScope> Global keyNeedSync (const Key *key)
The handling of synchronization is done internally and does not need to be checked by neither
application nor plugins.
globalScope> Global keyNew (const char *name,...)
These other flags deprecated and KEY_META should be preferred. They remain some time, however, for
compatibility:
• KEY_DIR
Define that the key is a directory rather than a ordinary key. This means its executable bits in its
mode are set. But even without this option the key can have subkeys. See keySetDir().
• KEY_OWNER
Next parameter is the owner. See keySetOwner().
• KEY_UID, KEY_GID
Next parameter is taken as the UID (uid_t) or GID (gid_t) that will be defined on the key. See
keySetUID() and keySetGID().
• KEY_MODE
Next parameter is taken as mode permissions (int) to the key. See keySetMode().
Key *k=keyNew("user/tmp/ex3",
KEY_VALUE, "some data", // with a simple value
KEY_MODE, 0777, // permissions
KEY_END); // end of args
• KEY_COMMENT
Next parameter is a comment. See keySetComment().
<globalScope> Global keySetATime (Key *key, time_t atime) This API is obsolete.
globalScope> Global keySetCTime (Key *key, time_t ctime)
This API is obsolete.
globalScope> Global keySetDir (Key *key)
This API is obsolete.
globalScope> Global keySetGID (Key *key, gid_t gid)
This API is obsolete.
globalScope> Global keySetMode (Key *key, mode_t mode)
This API is obsolete. It is only a mapping to keySetMeta(key, 'mode', str) which should be prefered.
globalScope> Global keySetMTime (Key *key, time_t mtime)
This API is obsolete.
globalScope> Global keySetUID (Key *key, uid_t uid)
This API is obsolete.
globalScope> Global ksNeedSync (const KeySet *ks)
Backends now work differently and do not rely on this information.
Version 0.8.14 Tue Dec 15 2015 deprecated(3elektra)