diff options
| author | Thomas Albers <thomas@thomaslabs.org> | 2023-03-04 22:47:28 +0100 |
|---|---|---|
| committer | Thomas Albers <thomas@thomaslabs.org> | 2023-03-04 22:47:28 +0100 |
| commit | 6fe823a614279cceb2d48507bd8e93b0efd87f94 (patch) | |
| tree | 579e3c5db456667ce2aeda94f909703513179ce1 /src/flush.lisp | |
Initial commit
Diffstat (limited to 'src/flush.lisp')
| -rw-r--r-- | src/flush.lisp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/flush.lisp b/src/flush.lisp new file mode 100644 index 0000000..4ab282b --- /dev/null +++ b/src/flush.lisp @@ -0,0 +1,7 @@ +(in-package #:ocl) + +(defun flush (command-queue) + (check-error (%flush command-queue))) + +(defun finish (command-queue) + (check-error (%finish command-queue))) |
