Lines Matching +defs:set +defs:end

47  * 2.15 or later and set _FORTIFY_SOURCE > 0.
552 thread_debug("thread end: %p\n", (void *)th);
563 rb_bug("thread_start_func_2: locking_mutex must not be set (%p:%"PRIxVALUE")",
850 * <code>abort_on_exception</code> and <code>$DEBUG</code> flags are not set
1685 * end
1687 * end
1837 * end
1850 * end
1852 * end
1869 * end
1944 /* set runnable if th was slept. */
2397 * default is <code>false</code>. When set to <code>true</code>, or if the
2415 * When set to <code>true</code>, all threads will abort if an exception is
2422 * end
2466 * When set to <code>true</code>, causes all threads (including the main
2698 * end
2719 * end
2720 * end
2792 * Returns the value of a thread local variable that has been set. Note that
2800 * Thread.current.thread_variable_set("foo", "bar") # set a thread local
2801 * Thread.current["foo"] = "bar" # set a fiber local
2925 * end
2959 * end
3051 * end
3056 * end
3266 rb_fd_init(rb_fdset_t *set)
3268 set->capa = FD_SETSIZE;
3269 set->fdset = ALLOC(fd_set);
3270 FD_ZERO(set->fdset);
3296 rb_fd_term(rb_fdset_t *set)
3298 xfree(set->fdset);
3299 set->fdset = NULL;
3300 set->capa = 0;
3304 rb_fd_set(int fd, rb_fdset_t *set)
3309 for (i = 0; i < set->fdset->fd_count; i++) {
3310 if (set->fdset->fd_array[i] == s) {
3314 if (set->fdset->fd_count >= (unsigned)set->capa) {
3315 set->capa = (set->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
3316 set->fdset = xrealloc(set->fdset, sizeof(unsigned int) + sizeof(SOCKET) * set->capa);
3318 set->fdset->fd_array[set->fdset->fd_count++] = s;
4485 time_t beg, end;
4499 end = time(0) - beg;
4500 return INT2FIX(end);
4820 * If outer is 0, then the innermost func will be called with recursive set