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
6b077878
Kaydet (Commit)
6b077878
authored
May 18, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove use of RTLD_GLOBAL.
üst
c85be6a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
importdl.c
Python/importdl.c
+4
-6
No files found.
Python/importdl.c
Dosyayı görüntüle @
6b077878
...
...
@@ -182,9 +182,6 @@ typedef void (*dl_funcptr)();
#ifndef RTLD_LAZY
#define RTLD_LAZY 1
#endif
#ifndef RTLD_GLOBAL
#define RTLD_GLOBAL 0
#endif
#define SHORT_EXT ".so"
#define LONG_EXT "module.so"
#endif
/* USE_SHLIB */
...
...
@@ -376,13 +373,13 @@ _PyImport_LoadDynamicModule(name, pathname, fp)
#ifdef RTLD_NOW
/* RTLD_NOW: resolve externals now
(i.e. core dump now if some are missing) */
void
*
handle
=
dlopen
(
pathname
,
RTLD_NOW
|
RTLD_GLOBAL
);
void
*
handle
=
dlopen
(
pathname
,
RTLD_NOW
);
#else
void
*
handle
;
if
(
Py_VerboseFlag
)
printf
(
"dlopen(
\"
%s
\"
, %d);
\n
"
,
pathname
,
RTLD_LAZY
|
RTLD_GLOBAL
);
handle
=
dlopen
(
pathname
,
RTLD_LAZY
|
RTLD_GLOBAL
);
RTLD_LAZY
);
handle
=
dlopen
(
pathname
,
RTLD_LAZY
);
#endif
/* RTLD_NOW */
if
(
handle
==
NULL
)
{
PyErr_SetString
(
PyExc_ImportError
,
dlerror
());
...
...
@@ -562,6 +559,7 @@ _PyImport_LoadDynamicModule(name, pathname, fp)
printf
(
"shl_load %s
\n
"
,
pathname
);
}
lib
=
shl_load
(
pathname
,
flags
,
0
);
/* XXX Chuck Blake once wrote that 0 should be BIND_NOSTART? */
if
(
lib
==
NULL
)
{
char
buf
[
256
];
...
...
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