Searched defs:fork (Results 1 - 2 of 2) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DZygote.java26 * be partially initialized and then fork()'d from the partially initialized
70 * We must not fork until we're single-threaded again. Wait until /proc shows we're
97 public static int fork() { method in class:Zygote
112 * fork()ing and and before spawning any threads.
114 * fork()ing and and before spawning any threads.
116 * setgroups() to after fork and before spawning any threads.
148 * fork()ing and and before spawning any threads.
150 * fork()ing and and before spawning any threads.
152 * setgroups() to after fork and before spawning any threads.
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinTask.java36 * ForkJoinPool#commonPool()} via {@link #fork}, {@link #invoke}, or
39 * using {@code ForkJoinTask} employ only methods {@link #fork} and
44 * of new forms of fork/join processing.
51 * coordination mechanisms are {@link #fork}, that arranges
57 * cooperate with fork/join scheduling. Subdividable tasks should also
92 * equivalent to {@code fork(); join()} but always attempts to begin
101 * <p>In the most typical usages, a fork-join pair act like a call
102 * (fork) and return (join) from a parallel recursive function. As is
104 * should be performed innermost-first. For example, {@code a.fork();
105 * b.fork();
651 public final ForkJoinTask<V> fork() { method in class:ForkJoinTask
[all...]

Completed in 79 milliseconds