Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
31e5e371
Kaydet (Commit)
31e5e371
authored
Agu 13, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Explain the possible range of values for the pid parameter to
waitpid().
üst
af572510
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
libos.tex
Doc/lib/libos.tex
+14
-6
No files found.
Doc/lib/libos.tex
Dosyayı görüntüle @
31e5e371
...
...
@@ -745,12 +745,20 @@ Availability: \UNIX{}.
\end{funcdesc}
\begin{funcdesc}
{
waitpid
}{
pid, options
}
Wait for completion of a child process given by process id, and return
a tuple containing its process id and exit status indication (encoded
as for
\function
{
wait()
}
). The semantics of the call are affected by
the value of the integer
\var
{
options
}
, which should be
\code
{
0
}
for
normal operation.
Availability:
\UNIX
{}
.
Wait for completion of a child process given by process id
\var
{
pid
}
,
and return a tuple containing its process id and exit status
indication (encoded as for
\function
{
wait()
}
). The semantics of the
call are affected by the value of the integer
\var
{
options
}
, which
should be
\code
{
0
}
for normal operation.
Availability:
\UNIX
{}
.
If
\var
{
pid
}
is greater than
\code
{
0
}
,
\function
{
waitpid()
}
requests
status information for that specific process. If
\var
{
pid
}
is
\code
{
0
}
, the request is for the status of any child in the process
group of the current process. If
\var
{
pid
}
is
\code
{
-1
}
, the request
pertains to any child of the current process. If
\var
{
pid
}
is less
than
\code
{
-1
}
, status is requested for any process in the process
group
\code
{
-
\var
{
pid
}}
(the absolute value of
\var
{
pid
}
).
\end{funcdesc}
\begin{datadesc}
{
WNOHANG
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment