Lines Matching refs:created
280 * created.
283 * @param[in] vg_created Valgrind thread ID of the created thread.
285 * @return DRD thread ID of the created thread.
290 DrdThreadId created;
293 created = DRD_(VgThreadIdToNewDrdThreadId)(vg_created);
294 tl_assert(0 <= (int)created && created < DRD_N_THREADS
295 && created != DRD_INVALID_THREADID);
297 tl_assert(DRD_(g_threadinfo)[created].sg_first == NULL);
298 tl_assert(DRD_(g_threadinfo)[created].sg_last == NULL);
299 /* Create an initial segment for the newly created thread. */
300 thread_append_segment(created, DRD_(sg_new)(creator, created));
302 return created;
306 * Initialize DRD_(g_threadinfo)[] for a newly created thread. Must be called
307 * after the thread has been created and before any client instructions are run
308 * on the newly created thread, e.g. from the handler installed via
311 * @param[in] vg_created Valgrind thread ID of the newly created thread.
317 const DrdThreadId created = DRD_(VgThreadIdToDrdThreadId)(vg_created);
319 tl_assert(0 <= (int)created && created < DRD_N_THREADS
320 && created != DRD_INVALID_THREADID);
322 DRD_(g_threadinfo)[created].stack_max
324 DRD_(g_threadinfo)[created].stack_startup
325 = DRD_(g_threadinfo)[created].stack_max;
326 DRD_(g_threadinfo)[created].stack_min
327 = DRD_(g_threadinfo)[created].stack_max;
328 DRD_(g_threadinfo)[created].stack_min_min
329 = DRD_(g_threadinfo)[created].stack_max;
330 DRD_(g_threadinfo)[created].stack_size
332 tl_assert(DRD_(g_threadinfo)[created].stack_max != 0);
334 return created;
1001 * every time a new segment is created. The property equiv(s1, s2) is defined
1005 * the potential to conflict with not yet created segments, either because the
1473 * been created or because of a synchronization operation.
1611 * because a new segment has been created.
1638 * Return the number of first-level bitmaps that have been created during
1647 * Return the number of second-level bitmaps that have been created during