3
I wanted to know why removal processes in threads have two pointers set to next
like this given example
void
remove (celula *p)
{
celula *lixo;
lixo = p->prox;
p->prox = lixo->prox;
free (lixo);
}
because there is always something like "p->Prox = garbage->Prox;"? could you explain to me thank you
Thanks brother was struggling
– Anderson Henrique