/******************************************************************************* * * FUNCTION: acpi_db_add_to_history * * PARAMETERS: command_line - Command to add * * RETURN: None * * DESCRIPTION: Add a command line to the history buffer. *
******************************************************************************/
for (i = 0; i < acpi_gbl_num_history; i++) { if (acpi_gbl_history_buffer[history_index].command) {
acpi_os_printf("%3u %s\n",
acpi_gbl_history_buffer[history_index].
cmd_num,
acpi_gbl_history_buffer[history_index].
command);
}
/******************************************************************************* * * FUNCTION: acpi_db_get_from_history * * PARAMETERS: command_num_arg - String containing the number of the * command to be retrieved * * RETURN: Pointer to the retrieved command. Null on error. * * DESCRIPTION: Get a command from the history buffer *
******************************************************************************/
/******************************************************************************* * * FUNCTION: acpi_db_get_history_by_index * * PARAMETERS: cmd_num - Index of the desired history entry. * Values are 0...(acpi_gbl_next_cmd_num - 1) * * RETURN: Pointer to the retrieved command. Null on error. * * DESCRIPTION: Get a command from the history buffer *
******************************************************************************/
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.