You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spellQueueEntry* popSpellQueueEntry(spellQueue** queue); //pop entry from queue
void addSpellQueueEntry(spellQueue** queue, char* word, pthread_cond_t* cond_inst, pthread_mutex_t* mutx_inst); //add a new entry to the spell queue to process
void* processSpellQueue(void* param); //worker thread function for spelling checker queue