Add jtag_queue_command() by Michael Bruck <mbruck@digenius.de>

git-svn-id: svn://svn.berlios.de/openocd/trunk@1815 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
kc8apf 2009-05-18 17:27:00 +00:00
parent 9b4295b059
commit 39e9278ffc
1 changed files with 15 additions and 0 deletions

View File

@ -439,6 +439,21 @@ jtag_command_t** jtag_get_last_command_p(void)
return last_comand_pointer;
}
void jtag_queue_command(jtag_command_t * cmd)
{
jtag_command_t **last_cmd;
last_cmd = jtag_get_last_command_p();
*last_cmd = cmd;
(*last_cmd)->next = NULL;
last_comand_pointer = &((*last_cmd)->next);
}
void* cmd_queue_alloc(size_t size)
{
cmd_queue_page_t **p_page = &cmd_queue_pages;