search for: init_count

Displaying 2 results from an estimated 2 matches for "init_count".

Did you mean: in_count
2014 Jul 28
2
not able to compile deleted_to_trash Plugin
...t last_copy_info' has no member named 'mail_id' i_array_init(&last_copy.mail_id, TRASH_LIST_INITSIZE); ^ /usr/include/dovecot/array.h:103:19: note: in definition of macro 'array_create' array_create_i(&(array)->arr, pool, element_size, init_count) ^ /usr/include/dovecot/array.h:38:2: note: in expansion of macro 'p_array_init' p_array_init(array, default_pool, init_count) ^ deleted-to-trash-plugin.c:61:4: note: in expansion of macro 'i_array_init' i_array_init(&last_copy.mail_id, TRASH_LIST_INIT...
2011 Jan 12
1
[LLVMdev] VMKit Runtime Link Error
...t* *java.io*.*; *import* java.util.concurrent.locks.*; *class* BoundedBuffer { Lock lock; Condition notFull; Condition notEmpty; *final* Object[] items = *new* Object[100]; *int* putptr, takeptr, count; *public* BoundedBuffer(*int* init_count) { lock = *new* ReentrantLock(); notFull = lock.newCondition(); notEmpty = lock.newCondition(); count = init_count; putptr = takeptr = 0; } *public* *void* put(Obje...