Searched refs:thread (Results 1 - 10 of 10) sorted by path

/u-boot/arch/mips/include/asm/
H A Dprocessor.h80 /* Saved per-thread scheduler affinity mask */
87 /* Other stuff associated with the thread. */
99 /* Free all resources held by a thread. */
100 #define release_thread(thread) do { } while(0)
102 /* Prepare to copy thread state - unlazy all lazy status */
/u-boot/arch/arm/include/asm/proc-armv/
H A Ddomain.h43 unsigned int domain = current->thread.domain; \
46 current->thread.domain = domain; \
47 set_domain(current->thread.domain); \
/u-boot/arch/arm/include/asm/
H A Dprocessor.h87 * Return saved PC of a blocked thread.
102 /* Free all resources held by a thread. */
115 #define get_task_struct(p) atomic_inc(&(p)->thread.refcount)
118 if (atomic_dec_and_test(&(p)->thread.refcount)) \
128 * Create a new kernel thread
/u-boot/arch/microblaze/include/asm/
H A Dsystem.h2 * include/asm-microblaze/system.h -- Low-level interrupt/thread ops
39 (last) = switch_thread (&prev->thread, &next->thread); \
/u-boot/arch/sh/include/asm/
H A Dsystem.h20 register unsigned long *__ts1 __asm__ ("r1") = &prev->thread.sp; \
21 register unsigned long *__ts2 __asm__ ("r2") = &prev->thread.pc; \
24 register unsigned long *__ts6 __asm__ ("r6") = &next->thread.sp; \
25 register unsigned long __ts7 __asm__ ("r7") = next->thread.pc; \
/u-boot/tools/buildman/
H A Dbuilder.py52 thread works on a single board at a time. It checks out the first commit,
69 When a thread finishes a build, it puts the output files into a result
80 Buildman also create working directories for each thread, in a .bm-work/
99 00/ working directory for thread 0 (contains source checkout)
101 01/ working directory for thread 1
201 thread_exceptions: List of exceptions raised by thread jobs
287 board rather than a thread-specific directory
1631 """Get the directory path to the working dir for a thread.
1634 thread_num: Number of thread to check (-1 for main process, which
1642 """Prepare the working directory for a thread
[all...]
/u-boot/tools/
H A Dkwboot.c855 /* allow to cancel this thread at any time */
877 kwboot_msg_start_thread(pthread_t *thread, int *tty, void *msg) argument
884 rc = pthread_create(thread, NULL, kwboot_msg_write_handler, arg);
894 kwboot_msg_stop_thread(pthread_t thread) argument
898 rc = pthread_cancel(thread);
904 rc = pthread_join(thread, NULL);
926 perror("Failed to start write thread");
952 perror("Failed to stop write thread");
1020 perror("Failed to start write thread");
1068 perror("Failed to stop write thread");
[all...]
/u-boot/tools/patman/
H A Dcontrol.py103 dry_run, in_reply_to, thread, smtp_server):
139 thread (bool): True to add --thread to git send-email (make all patches
151 cc_file, in_reply_to=in_reply_to, thread=thread,
186 args.in_reply_to, args.thread, args.smtp_server)
H A Dfunc_test.py231 cc_file, in_reply_to=in_reply_to, thread=None)
H A Dgitutil.py436 self_only=False, alias=None, in_reply_to=None, thread=False,
451 thread: True to add --thread to git send-email (make
517 if thread:
518 cmd.append('--thread')

Completed in 129 milliseconds