1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-network/pharo-porting/changes_for_pharo.st

19 lines
376 B
Smalltalk

"""
The following changes need to be kept for pharo.
"""
OsmoUDPSocketTest extend [
createSocket [
^ Socket newUDP
]
]
OsmoUDPSocket extend [
startRXProcess [
^ [[[
Processor activeProcess name: name, ' RX'.
self runRXProcess
] on: ConnectionClosed do: []
] ensure: [net_exit signal]] fork.
]
]