On 04/20/2016 08:22 AM, [email protected] wrote:
-/* Remove INSN from queue. */
+/* Remove INSN at idx from queue. */
+static void
+queue_remove (unsigned int q, unsigned int idx)
+{
+ QUEUE_INDEX (insn_queue[q][idx]) = QUEUE_NOWHERE;
+ insn_queue[q].ordered_remove (idx);
+ q_size--;
I think I'm nacking this one, sorry. I don't think ordered_removes in the scheduler queues are going to fly.
Bernd
