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
ee07b947
Kaydet (Commit)
ee07b947
authored
Ara 07, 2013
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix indentation of switch cases.
üst
d45a46b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
selectmodule.c
Modules/selectmodule.c
+11
-11
No files found.
Modules/selectmodule.c
Dosyayı görüntüle @
ee07b947
...
...
@@ -1317,16 +1317,16 @@ pyepoll_internal_ctl(int epfd, int op, PyObject *pfd, unsigned int events)
return
NULL
;
}
switch
(
op
)
{
case
EPOLL_CTL_ADD
:
case
EPOLL_CTL_MOD
:
switch
(
op
)
{
case
EPOLL_CTL_ADD
:
case
EPOLL_CTL_MOD
:
ev
.
events
=
events
;
ev
.
data
.
fd
=
fd
;
Py_BEGIN_ALLOW_THREADS
result
=
epoll_ctl
(
epfd
,
op
,
fd
,
&
ev
);
Py_END_ALLOW_THREADS
break
;
case
EPOLL_CTL_DEL
:
case
EPOLL_CTL_DEL
:
/* In kernel versions before 2.6.9, the EPOLL_CTL_DEL
* operation required a non-NULL pointer in event, even
* though this argument is ignored. */
...
...
@@ -1339,7 +1339,7 @@ pyepoll_internal_ctl(int epfd, int op, PyObject *pfd, unsigned int events)
}
Py_END_ALLOW_THREADS
break
;
default:
default:
result
=
-
1
;
errno
=
EINVAL
;
}
...
...
@@ -1795,22 +1795,22 @@ kqueue_event_richcompare(kqueue_event_Object *s, kqueue_event_Object *o,
}
switch
(
op
)
{
case
Py_EQ
:
case
Py_EQ
:
result
=
(
result
==
0
);
break
;
case
Py_NE
:
case
Py_NE
:
result
=
(
result
!=
0
);
break
;
case
Py_LE
:
case
Py_LE
:
result
=
(
result
<=
0
);
break
;
case
Py_GE
:
case
Py_GE
:
result
=
(
result
>=
0
);
break
;
case
Py_LT
:
case
Py_LT
:
result
=
(
result
<
0
);
break
;
case
Py_GT
:
case
Py_GT
:
result
=
(
result
>
0
);
break
;
}
...
...
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