Searched refs:PID (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-11-stable/contrib/gdb/gdb/config/i386/
H A Dnm-i386v42mp.h45 /* Return the process id stored in composite PID. */
46 #define PIDGET(PID) (((PID) & ((1 << PIDBITS) - 1)))
48 /* Return the thread or lwp id stored in composite PID. */
49 #define TIDGET(PID) (((PID) & 0x3fffffff) >> PIDBITS)
50 #define LIDGET(PID) TIDGET(PID)
53 composite PID. */
54 #define MERGEPID(PID, LI
[all...]
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dsnmpd.sh35 PID=/var/run/snmpd.pid
41 if [ -r ${PID} ] ; then
42 if kill -0 `cat ${PID}` ; then
43 echo "snmpd already running -- pid `cat ${PID}`" >/dev/stderr
46 rm -f ${PID}
48 if ${SNMPD} -c ${CONF} -p ${PID} ; then
54 if [ -r ${PID} ] ; then
55 if kill -0 `cat ${PID}` ; then
56 if kill -15 `cat ${PID}` ; then
64 rm -f ${PID}
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.retlist.ksh32 PID=$!
41 match=`$dtrace -l -n pid$PID:a.out:simple: -n pid$PID:a.out:complex: | wc -l`
43 kill $PID
/freebsd-11-stable/contrib/gdb/gdb/config/rs6000/
H A Dnm-rs6000.h38 #define SOLIB_CREATE_INFERIOR_HOOK(PID) \
40 xcoff_relocate_symtab (PID); \
/freebsd-11-stable/contrib/ntp/scripts/rc/
H A Dntpd45 PID=`cat $PIDFILE`
47 if kill -TERM $PID 2> /dev/null;then
50 if [ -n "`ps -p $PID|grep -v PID`" ]; then
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcoff-solib.h45 #define SOLIB_CREATE_INFERIOR_HOOK(PID) coff_solib_create_inferior_hook()
56 #define SOLIB_REMOVE_INFERIOR_HOOK(PID) (0)
H A Dsolib.h47 #define SOLIB_CREATE_INFERIOR_HOOK(PID) solib_create_inferior_hook()
56 #define SOLIB_REMOVE_INFERIOR_HOOK(PID) (0)
H A Dpa64solib.h40 #define SOLIB_CREATE_INFERIOR_HOOK(PID) pa64_solib_create_inferior_hook()
48 #define SOLIB_REMOVE_INFERIOR_HOOK(PID) pa64_solib_remove_inferior_hook(PID)
H A Dsomsolib.h51 #define SOLIB_CREATE_INFERIOR_HOOK(PID) som_solib_create_inferior_hook()
60 #define SOLIB_REMOVE_INFERIOR_HOOK(PID) som_solib_remove_inferior_hook(PID)
H A Dtarget.h738 some synchronization between gdb and the new inferior process, PID. */
787 /* Returns TRUE if PID has exited. And, also sets EXIT_STATUS to the
788 exit code of PID, if any. */
931 #define target_pid_to_str(PID) current_target.to_pid_to_str (PID)
934 #define target_tid_to_str(PID) \
935 target_pid_to_str (PID)
939 /* Return a short string describing extra information about PID,
979 The process PID must be stopped when this operation is used.
1018 #define TARGET_CREATE_INFERIOR_HOOK(PID)
[all...]
/freebsd-11-stable/crypto/openssh/regress/
H A Dreconfigure.sh28 PID=`$SUDO cat $PIDFILE`
30 $SUDO kill -HUP $PID
/freebsd-11-stable/crypto/openssh/
H A Dopensshd.init.in47 PID=`${CAT} ${PIDFILE}`
49 if [ ${PID:=0} -gt 1 -a ! "X$PID" = "X " ]; then
50 ${KILL} ${PID}
52 echo "Unable to read PID file"
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dp2p-action-udhcp.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
H A Dp2p-action.sh14 PID=`cat $PF`
15 if [ $PID -gt 0 ]; then
16 if ps $PID | grep -q $NAME; then
17 kill $PID
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DFDRTraceExpander.cpp44 CurrentRecord.PId = PID;
59 CurrentRecord.PId = PID;
74 CurrentRecord.PId = PID;
91 PID = R.pid();
100 PID = R.tid();
117 CurrentRecord.PId = PID;
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dexport.mk14 .export .MAKE.PID
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DIRPrintingPasses.cpp134 const char *PID = (const char*)P->getPassID(); local
136 return (PID == &PrintModulePassWrapper::ID) ||
137 (PID == &PrintFunctionPassWrapper::ID);
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A DMKlib_gen.sh86 PID=$$
87 ED1=sed1_${PID}.sed
88 ED2=sed2_${PID}.sed
89 ED3=sed3_${PID}.sed
90 ED4=sed4_${PID}.sed
91 AW1=awk1_${PID}.awk
92 AW2=awk2_${PID}.awk
93 TMP=gen__${PID}.c
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp52 // Read the owning host and PID out of the lock file. If it appears that the
66 int PID; local
67 if (!PIDStr.getAsInteger(10, PID)) {
68 auto Owner = std::make_pair(std::string(Hostname), PID);
109 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) { argument
116 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH)
203 // We failed to write out PID, so report the error, remove the
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRTraceExpander.h26 int32_t PID = 0; member in class:llvm::xray::TraceExpander
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp115 for (auto *PID : IMD->property_impls()) {
116 if (PID->getPropertyImplementation() ==
118 ObjCPropertyDecl *PD = PID->getPropertyDecl();
127 SynthesizedProperties[PD] = PID;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DLockFileManager.h67 static bool processStillExecuting(StringRef Hostname, int PID);
/freebsd-11-stable/usr.bin/ipcs/
H A Dipcs.c107 #define PID 8 macro
124 option |= BIGGEST | CREATOR | OUTSTANDING | PID | TIME;
148 option |= PID;
331 if (option & PID)
367 if (option & PID)
411 if (option & PID)
447 if (option & PID)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1384 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) { argument
1385 if (!PID->isThisDeclarationADefinition()) {
1386 Out << "@protocol " << *PID << ";\n"; local
1390 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1392 Out << "@protocol " << *PID; local
1398 Out << "@protocol " << *PID << '\n'; local
1399 VisitDeclContext(PID, false);
1403 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) { argument
1404 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\
1411 VisitObjCCategoryDecl(ObjCCategoryDecl *PID) argument
1416 Out << "(" << *PID << ")\\n"; local
1557 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) argument
[all...]
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/
H A Ddtrace.test.mk43 # Test programs shouldn't be stripped; else we generally can't use the PID

Completed in 691 milliseconds

123