Coverage report: /home/ellis/comp/core/ffi/keyutils/pkg.lisp

KindCoveredAll%
expression13 33.3
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; pkg.lisp --- low-level bindings to libkeyutils
2
 
3
 ;; key utility library interface
4
 
5
 ;; ref: https://man7.org/linux/man-pages/man7/keyutils.7.html
6
 
7
 ;;; Commentary:
8
 
9
 ;; 
10
 
11
 ;;; Code:
12
 (defpackage :keyutils
13
   (:use :cl :std :sb-alien)
14
   (:export 
15
    :load-keyutils
16
    :keyutils-version-string
17
    :keyutils-build-string
18
    :key-spec
19
    :key-spec*
20
    :add-key
21
    :request-key))
22
 
23
 (in-package :keyutils)
24
 (define-alien-loader keyutils "/usr/lib/")