Home
last modified time | relevance | path

Searched refs:sa (Results 1 – 3 of 3) sorted by relevance

/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dkallsyms.c596 const struct sym_entry *sa; in compare_symbols() local
600 sa = a; in compare_symbols()
604 if (sa->addr > sb->addr) in compare_symbols()
606 if (sa->addr < sb->addr) in compare_symbols()
610 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W'); in compare_symbols()
616 wa = may_be_linker_script_provide_symbol(sa); in compare_symbols()
622 wa = prefix_underscores_count((const char *)sa->sym + 1); in compare_symbols()
628 return sa->start_pos - sb->start_pos; in compare_symbols()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DMsOS_linux.c2437 struct sigaction sa; in Timer_Thread() local
2439 sa.sa_flags = SA_SIGINFO; in Timer_Thread()
2440 sa.sa_sigaction = _MsOS_TimerNotify; in Timer_Thread()
2441 sigaddset(&sa.sa_mask, SIGRTMIN); in Timer_Thread()
2442 sigemptyset(&sa.sa_mask); in Timer_Thread()
2443 if (sigaction(SIGRTMIN, &sa, NULL) == -1) in Timer_Thread()
2451 if (sigprocmask(SIG_BLOCK, &sa.sa_mask, NULL) == -1) in Timer_Thread()
2491 if (sigprocmask(SIG_UNBLOCK, &sa.sa_mask, NULL) == -1) in Timer_Thread()
2500 sigwaitinfo(&sa.sa_mask, NULL); in Timer_Thread()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/asm/
H A Dsignal.h112 struct sigaction sa; member