Skip to content

Commit e817f12

Browse files
Merge pull request #194 from ggayDiamond/feature/callbackQueue
Add 'callbackSetQueueSize' function
2 parents 97cf8d6 + 92d4942 commit e817f12

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Versioning <https://semver.org/spec/v2.0.0.html>`_.
1010
Unreleased_
1111
-----------
1212

13-
Nothing yet
13+
Added:
14+
15+
- `Add support to change the callback buffer limit <../../pull/194>`_
1416

1517
4.6.1_ - 2025-04-22
1618
-------------------

softioc/imports.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ def from_param(cls, value):
8686
dbLoadDatabase.argtypes = (auto_encode, auto_encode, auto_encode)
8787
dbLoadDatabase.errcheck = expect_success
8888

89+
callbackSetQueueSize = dbCore.callbackSetQueueSize
90+
callbackSetQueueSize.argtypes = (c_int,)
91+
callbackSetQueueSize.errcheck = expect_success
8992

9093
# unsigned short recGblResetAlarms(void *precord)
9194
#
@@ -116,5 +119,6 @@ def from_param(cls, value):
116119
'registryDeviceSupportAdd',
117120
'IOSCANPVT', 'scanIoRequest', 'scanIoInit',
118121
'dbLoadDatabase',
122+
'callbackSetQueueSize',
119123
'recGblResetAlarms',
120124
]

0 commit comments

Comments
 (0)