[squeak-dev] FFI: FFI-PoolsTests-monty.2.mcz

commits at source.squeak.org commits at source.squeak.org
Wed May 27 14:52:37 UTC 2020


Marcel Taeumel uploaded a new version of FFI-PoolsTests to project FFI:
http://source.squeak.org/FFI/FFI-PoolsTests-monty.2.mcz

==================== Summary ====================

Name: FFI-PoolsTests-monty.2
Author: monty
Time: 30 March 2018, 2:25:31.60082 am
UUID: 6d75440b-fd24-0d00-abe8-a2260f24d7b0
Ancestors: FFI-PoolsTests-monty.1

updated for FFISharedPool renaming

=============== Diff against FFI-PoolsTests-monty.1 ===============

Item was added:
+ FFIExternalSharedPool subclass: #FFITestDirectLoopExternalSharedPool
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'FFI-PoolsTests'!

Item was added:
+ ----- Method: FFITestDirectLoopExternalSharedPool class>>one (in category 'definitions') -----
+ one
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #two>!

Item was added:
+ ----- Method: FFITestDirectLoopExternalSharedPool class>>two (in category 'definitions') -----
+ two
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #one>!

Item was removed:
- FFISharedPool subclass: #FFITestDirectLoopSharedPool
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'FFI-PoolsTests'!

Item was removed:
- ----- Method: FFITestDirectLoopSharedPool class>>one (in category 'definitions') -----
- one
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #two>!

Item was removed:
- ----- Method: FFITestDirectLoopSharedPool class>>two (in category 'definitions') -----
- two
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #one>!

Item was added:
+ FFIExternalSharedPool subclass: #FFITestIndirectLoopExternalSharedPool
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'FFI-PoolsTests'!

Item was added:
+ ----- Method: FFITestIndirectLoopExternalSharedPool class>>one (in category 'accessing structure variables') -----
+ one
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #three>!

Item was added:
+ ----- Method: FFITestIndirectLoopExternalSharedPool class>>three (in category 'definitions') -----
+ three
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #two>!

Item was added:
+ ----- Method: FFITestIndirectLoopExternalSharedPool class>>two (in category 'definitions') -----
+ two
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #one>!

Item was removed:
- FFISharedPool subclass: #FFITestIndirectLoopSharedPool
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'FFI-PoolsTests'!

Item was removed:
- ----- Method: FFITestIndirectLoopSharedPool class>>one (in category 'accessing structure variables') -----
- one
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #three>!

Item was removed:
- ----- Method: FFITestIndirectLoopSharedPool class>>three (in category 'definitions') -----
- three
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #two>!

Item was removed:
- ----- Method: FFITestIndirectLoopSharedPool class>>two (in category 'definitions') -----
- two
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #one>!

Item was added:
+ FFIExternalSharedPool subclass: #FFITestStandardExternalSharedPool
+ 	instanceVariableNames: ''
+ 	classVariableNames: 'EAGAIN EPERM EWOULDBLOCK M_PI ULONG_MAX'
+ 	poolDictionaries: ''
+ 	category: 'FFI-PoolsTests'!

Item was added:
+ ----- Method: FFITestStandardExternalSharedPool class>>one (in category 'definitions') -----
+ one
+ 	<ffiExternalSharedPool>
+ 	<ffiPlatformName: 'unix'>
+ 	<ffiCHeaders: #('<math.h>' '<limits.h>')>
+ 	<ffiVariable: #M_PI type: #Float>
+ 	<ffiVariable: #ULONG_MAX type: #LargePositiveInteger>!

Item was added:
+ ----- Method: FFITestStandardExternalSharedPool class>>three (in category 'definitions') -----
+ three
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #two>
+ 	<ffiCCompiler: 'gcc'>
+ 	<ffiVariable: #EAGAIN type: #Integer>
+ 	<ffiVariable: #EWOULDBLOCK type: #Integer>
+ 	<ffiVariable: #EPERM type: #Boolean>!

Item was added:
+ ----- Method: FFITestStandardExternalSharedPool class>>two (in category 'definitions') -----
+ two
+ 	<ffiExternalSharedPool>
+ 	<ffiPlatformName: 'unix' wordSize: 4>
+ 	<ffiCCompiler: 'gcc'>
+ 	<ffiCFlags: '-Wall -o'>
+ 	<ffiCHeaders: #('<math.h>' '<limits.h>' '<assert.h>')>
+ 	<ffiVariable: #M_PI type: #Float>
+ 	<ffiVariable: #ULONG_MAX type: #LargePositiveInteger>
+ 	<ffiVariable: #EAGAIN type: nil>
+ 	<ffiVariable: #EWOULDBLOCK type: nil>!

Item was removed:
- FFISharedPool subclass: #FFITestStandardSharedPool
- 	instanceVariableNames: ''
- 	classVariableNames: 'EAGAIN EPERM EWOULDBLOCK M_PI ULONG_MAX'
- 	poolDictionaries: ''
- 	category: 'FFI-PoolsTests'!

Item was removed:
- ----- Method: FFITestStandardSharedPool class>>one (in category 'definitions') -----
- one
- 	<ffiSharedPool>
- 	<ffiPlatformName: 'unix'>
- 	<ffiCHeaders: #('<math.h>' '<limits.h>')>
- 	<ffiVariable: #M_PI type: #Float>
- 	<ffiVariable: #ULONG_MAX type: #LargePositiveInteger>!

Item was removed:
- ----- Method: FFITestStandardSharedPool class>>three (in category 'definitions') -----
- three
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #two>
- 	<ffiCCompiler: 'gcc'>
- 	<ffiVariable: #EAGAIN type: #Integer>
- 	<ffiVariable: #EWOULDBLOCK type: #Integer>
- 	<ffiVariable: #EPERM type: #Boolean>!

Item was removed:
- ----- Method: FFITestStandardSharedPool class>>two (in category 'definitions') -----
- two
- 	<ffiSharedPool>
- 	<ffiPlatformName: 'unix' wordSize: 4>
- 	<ffiCCompiler: 'gcc'>
- 	<ffiCFlags: '-Wall -o'>
- 	<ffiCHeaders: #('<math.h>' '<limits.h>' '<assert.h>')>
- 	<ffiVariable: #M_PI type: #Float>
- 	<ffiVariable: #ULONG_MAX type: #LargePositiveInteger>
- 	<ffiVariable: #EAGAIN type: nil>
- 	<ffiVariable: #EWOULDBLOCK type: nil>!

Item was added:
+ FFIExternalSharedPool subclass: #FFITestUnknownReferenceExternalSharedPool
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'FFI-PoolsTests'!

Item was added:
+ ----- Method: FFITestUnknownReferenceExternalSharedPool class>>one (in category 'definitions') -----
+ one
+ 	<ffiExternalSharedPool>
+ 	<ffiInheritsFrom: #unknown>!

Item was removed:
- FFISharedPool subclass: #FFITestUnknownReferenceSharedPool
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'FFI-PoolsTests'!

Item was removed:
- ----- Method: FFITestUnknownReferenceSharedPool class>>one (in category 'definitions') -----
- one
- 	<ffiSharedPool>
- 	<ffiInheritsFrom: #unknown>!



More information about the Squeak-dev mailing list