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
2decf22b
Kaydet (Commit)
2decf22b
authored
Eyl 05, 2010
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue9662, patch by Łukasz Langa in issue5504.
üst
713f2aa5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
callbacks.c
Modules/_ctypes/callbacks.c
+4
-0
ffi.h
Modules/_ctypes/libffi_osx/include/ffi.h
+4
-2
malloc_closure.c
Modules/_ctypes/malloc_closure.c
+1
-2
setup.py
setup.py
+1
-0
No files found.
Modules/_ctypes/callbacks.c
Dosyayı görüntüle @
2decf22b
...
...
@@ -416,9 +416,13 @@ CThunkObject *_ctypes_alloc_callback(PyObject *callable,
"ffi_prep_cif failed with %d"
,
result
);
goto
error
;
}
#if defined(X86_DARWIN) || defined(POWERPC_DARWIN)
result
=
ffi_prep_closure
(
p
->
pcl_write
,
&
p
->
cif
,
closure_fcn
,
p
);
#else
result
=
ffi_prep_closure_loc
(
p
->
pcl_write
,
&
p
->
cif
,
closure_fcn
,
p
,
p
->
pcl_exec
);
#endif
if
(
result
!=
FFI_OK
)
{
PyErr_Format
(
PyExc_RuntimeError
,
"ffi_prep_closure failed with %d"
,
result
);
...
...
Modules/_ctypes/libffi_osx/include/ffi.h
Dosyayı görüntüle @
2decf22b
...
...
@@ -264,6 +264,9 @@ ffi_prep_closure(
void
(
*
fun
)(
ffi_cif
*
,
void
*
,
void
**
,
void
*
),
void
*
user_data
);
void
ffi_closure_free
(
void
*
);
void
*
ffi_closure_alloc
(
size_t
size
,
void
**
code
);
typedef
struct
ffi_raw_closure
{
char
tramp
[
FFI_TRAMPOLINE_SIZE
];
ffi_cif
*
cif
;
...
...
@@ -349,4 +352,4 @@ ffi_call(
}
#endif
#endif // #ifndef LIBFFI_H
\ No newline at end of file
#endif // #ifndef LIBFFI_H
Modules/_ctypes/malloc_closure.c
Dosyayı görüntüle @
2decf22b
...
...
@@ -106,7 +106,6 @@ void *ffi_closure_alloc(size_t ignored, void** codeloc)
return
NULL
;
item
=
free_list
;
free_list
=
item
->
next
;
*
codeloc
=
(
void
*
)
item
;
*
codeloc
=
(
void
*
)
item
;
return
(
void
*
)
item
;
}
setup.py
Dosyayı görüntüle @
2decf22b
...
...
@@ -1657,6 +1657,7 @@ class PyBuildExt(build_ext):
depends
=
[
'_ctypes/ctypes.h'
]
if
sys
.
platform
==
'darwin'
:
sources
.
append
(
'_ctypes/malloc_closure.c'
)
sources
.
append
(
'_ctypes/darwin/dlfcn_simple.c'
)
extra_compile_args
.
append
(
'-DMACOSX'
)
include_dirs
.
append
(
'_ctypes/darwin'
)
...
...
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