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
96e97169
Kaydet (Commit)
96e97169
authored
Tem 19, 2016
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
expose EPOLLRDHUP (closes #27567)
üst
6fb90905
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
select.rst
Doc/library/select.rst
+3
-0
NEWS
Misc/NEWS
+2
-0
selectmodule.c
Modules/selectmodule.c
+1
-1
No files found.
Doc/library/select.rst
Dosyayı görüntüle @
96e97169
...
...
@@ -285,6 +285,9 @@ Edge and Level Trigger Polling (epoll) Objects
| :const:`EPOLLONESHOT` | Set one-shot behavior. After one event is |
| | pulled out, the fd is internally disabled |
+-----------------------+-----------------------------------------------+
| :const:`EPOLLRDHUP` | Stream socket peer closed connection or shut |
| | down writing half of connection. |
+-----------------------+-----------------------------------------------+
| :const:`EPOLLRDNORM` | Equivalent to :const:`EPOLLIN` |
+-----------------------+-----------------------------------------------+
| :const:`EPOLLRDBAND` | Priority data band can be read. |
...
...
Misc/NEWS
Dosyayı görüntüle @
96e97169
...
...
@@ -26,6 +26,8 @@ Core and Builtins
Library
-------
- Issue #27567: Expose the EPOLLRDHUP constant in the select module.
- Issue #1621: Avoid signed int negation overflow in the "audioop" module.
- Issue #27533: Release GIL in nt._isdir
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
96e97169
...
...
@@ -2473,12 +2473,12 @@ PyInit_select(void)
PyModule_AddIntMacro
(
m
,
EPOLLPRI
);
PyModule_AddIntMacro
(
m
,
EPOLLERR
);
PyModule_AddIntMacro
(
m
,
EPOLLHUP
);
PyModule_AddIntMacro
(
m
,
EPOLLRDHUP
);
PyModule_AddIntMacro
(
m
,
EPOLLET
);
#ifdef EPOLLONESHOT
/* Kernel 2.6.2+ */
PyModule_AddIntMacro
(
m
,
EPOLLONESHOT
);
#endif
/* PyModule_AddIntConstant(m, "EPOLL_RDHUP", EPOLLRDHUP); */
#ifdef EPOLLRDNORM
PyModule_AddIntMacro
(
m
,
EPOLLRDNORM
);
...
...
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