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
49b56069
Kaydet (Commit)
49b56069
authored
Eki 01, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Renamed thread.h to pythread.h.
üst
c456d36b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
14 additions
and
10 deletions
+14
-10
_tkinter.c
Modules/_tkinter.c
+5
-1
bsddbmodule.c
Modules/bsddbmodule.c
+1
-1
signalmodule.c
Modules/signalmodule.c
+1
-1
socketmodule.c
Modules/socketmodule.c
+1
-1
stdwinmodule.c
Modules/stdwinmodule.c
+1
-1
threadmodule.c
Modules/threadmodule.c
+1
-1
ceval.c
Python/ceval.c
+1
-1
import.c
Python/import.c
+1
-1
pythonrun.c
Python/pythonrun.c
+1
-1
thread.c
Python/thread.c
+1
-1
No files found.
Modules/_tkinter.c
Dosyayı görüntüle @
49b56069
...
...
@@ -59,7 +59,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include <ctype.h>
#ifdef WITH_THREAD
#include "thread.h"
#include "
py
thread.h"
#endif
#ifdef MS_WINDOWS
...
...
@@ -71,6 +71,10 @@ PERFORMANCE OF THIS SOFTWARE.
#include "myselect.h"
#endif
#ifdef PYOS_OS2
#include "myselect.h"
#endif
#include <tcl.h>
#include <tk.h>
...
...
Modules/bsddbmodule.c
Dosyayı görüntüle @
49b56069
...
...
@@ -42,7 +42,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#ifdef WITH_THREAD
#include "thread.h"
#include "
py
thread.h"
#endif
#include <sys/types.h>
...
...
Modules/signalmodule.c
Dosyayı görüntüle @
49b56069
...
...
@@ -93,7 +93,7 @@ PERFORMANCE OF THIS SOFTWARE.
#ifdef WITH_THREAD
#include <sys/types.h>
/* For pid_t */
#include "thread.h"
#include "
py
thread.h"
static
long
main_thread
;
static
pid_t
main_pid
;
#endif
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
49b56069
...
...
@@ -87,7 +87,7 @@ Socket methods:
#include "Python.h"
#if defined(WITH_THREAD) && !defined(HAVE_GETHOSTBYNAME_R) && !defined(MS_WINDOWS)
#include "thread.h"
#include "
py
thread.h"
#endif
#ifdef HAVE_UNISTD_H
...
...
Modules/stdwinmodule.c
Dosyayı görüntüle @
49b56069
...
...
@@ -85,7 +85,7 @@ PERFORMANCE OF THIS SOFTWARE.
#ifdef WITH_THREAD
#include "thread.h"
#include "
py
thread.h"
static
type_lock
StdwinLock
;
/* Lock held when interpreter not locked */
...
...
Modules/threadmodule.c
Dosyayı görüntüle @
49b56069
...
...
@@ -40,7 +40,7 @@ PERFORMANCE OF THIS SOFTWARE.
#error "Then run `make clean' followed by `make'."
#endif
#include "thread.h"
#include "
py
thread.h"
static
PyObject
*
ThreadError
;
...
...
Python/ceval.c
Dosyayı görüntüle @
49b56069
...
...
@@ -109,7 +109,7 @@ static long dxp[256];
#ifdef WITH_THREAD
#include <errno.h>
#include "thread.h"
#include "
py
thread.h"
extern
int
_PyThread_Started
;
/* Flag for Py_Exit */
...
...
Python/import.c
Dosyayı görüntüle @
49b56069
...
...
@@ -119,7 +119,7 @@ _PyImport_Fini()
#ifdef WITH_THREAD
#include "thread.h"
#include "
py
thread.h"
static
type_lock
import_lock
=
0
;
static
long
import_lock_thread
=
-
1
;
...
...
Python/pythonrun.c
Dosyayı görüntüle @
49b56069
...
...
@@ -1031,7 +1031,7 @@ Py_FatalError(msg)
/* Clean up and exit */
#ifdef WITH_THREAD
#include "thread.h"
#include "
py
thread.h"
int
_PyThread_Started
=
0
;
/* Set by threadmodule.c and maybe others */
#endif
...
...
Python/thread.c
Dosyayı görüntüle @
49b56069
...
...
@@ -59,7 +59,7 @@ extern char *getenv();
#endif
#endif
#include "thread.h"
#include "
py
thread.h"
#ifdef __ksr__
#define _POSIX_THREADS
...
...
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