From 402d74dc6a266d37fa7ba6b67d39e70d0f098256 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 21 Oct 2009 11:14:15 +0200 Subject: Corrected missing or misleading doxygen comments --- server/parser/pgsql.c | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'server/parser/pgsql.c') diff --git a/server/parser/pgsql.c b/server/parser/pgsql.c index bbdb6d8..930bfc2 100644 --- a/server/parser/pgsql.c +++ b/server/parser/pgsql.c @@ -1,11 +1,6 @@ /* * Copyright (C) 2009 Red Hat Inc. * - * David Sommerseth - * - * Takes a standardised XML document (from parseToSQLdata()) and does - * the database operations based on that input - * * This application is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; version 2. @@ -16,6 +11,16 @@ * General Public License for more details. */ +/** + * @file pgsql.c + * @author David Sommerseth + * @date Wed Oct 13 17:44:35 2009 + * + * @brief Database API for the PostgreSQL database. + * + * + */ + #include #include #include @@ -383,6 +388,7 @@ int db_rollback(dbconn *dbc) { * This function blocks until a notification is received from the database * * @param dbc Database connection + * @param shutdown Pointer to the shutdown flag. Used to avoid reporting false errors. * @param listenfor Name to be used when calling LISTEN * * @return Returns 1 on successful waiting, otherwise -1 @@ -747,6 +753,7 @@ int db_get_new_rterid(dbconn *dbc) { * @param dbc Database handler where to perform the SQL queries * @param xslt A pointer to a parsed 'xmlparser.xsl' XSLT template * @param summaryxml The XML report from rteval + * @param submid Submission ID, referencing the record in the submissionqueue table. * @param syskey A positive integer containing the return value from db_register_system() * @param rterid A positive integer containing the return value from db_get_new_rterid() * @param report_fname A string containing the filename of the report. -- cgit