sd-journal: implement a number of non-implemented calls from the API for now

This commit is contained in:
Lennart Poettering 2012-01-11 03:23:04 +01:00
parent 731a676c20
commit 19a2bd80c1
2 changed files with 23 additions and 24 deletions

View File

@ -1590,27 +1590,27 @@ _public_ int sd_journal_process(sd_journal *j) {
}
}
_public_ int sd_journal_query_unique(sd_journal *j, const char *field) {
if (!j)
return -EINVAL;
if (!field)
return -EINVAL;
/* _public_ int sd_journal_query_unique(sd_journal *j, const char *field) { */
/* if (!j) */
/* return -EINVAL; */
/* if (!field) */
/* return -EINVAL; */
return -ENOTSUP;
}
/* return -ENOTSUP; */
/* } */
_public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) {
if (!j)
return -EINVAL;
if (!data)
return -EINVAL;
if (!l)
return -EINVAL;
/* _public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) { */
/* if (!j) */
/* return -EINVAL; */
/* if (!data) */
/* return -EINVAL; */
/* if (!l) */
/* return -EINVAL; */
return -ENOTSUP;
}
/* return -ENOTSUP; */
/* } */
_public_ void sd_journal_restart_unique(sd_journal *j) {
if (!j)
return;
}
/* _public_ void sd_journal_restart_unique(sd_journal *j) { */
/* if (!j) */
/* return; */
/* } */

View File

@ -46,7 +46,6 @@
* - cryptographic hash
* - think about manipulations of header
* - implement audit gateway
* - implement kernel gatway
*/
/* Write to daemon */
@ -95,9 +94,9 @@ int sd_journal_seek_cursor(sd_journal *j, const char *cursor);
int sd_journal_get_cursor(sd_journal *j, char **cursor);
int sd_journal_query_unique(sd_journal *j, const char *field); /* missing */
int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l); /* missing */
void sd_journal_restart_unique(sd_journal *j); /* missing */
/* int sd_journal_query_unique(sd_journal *j, const char *field); /\* missing *\/ */
/* int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l); /\* missing *\/ */
/* void sd_journal_restart_unique(sd_journal *j); /\* missing *\/ */
enum {
SD_JOURNAL_NOP,