mirror of
https://github.com/containers/podman.git
synced 2025-11-12 17:19:57 +08:00
Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.18.0 to 5.19.0. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.18.0...v5.19.0) --- updated-dependencies: - dependency-name: github.com/containers/image/v5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
700 B
Go
43 lines
700 B
Go
package gpgme
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var callbacks struct {
|
|
sync.Mutex
|
|
m map[uintptr]interface{}
|
|
c uintptr
|
|
}
|
|
|
|
func callbackAdd(v interface{}) uintptr {
|
|
callbacks.Lock()
|
|
defer callbacks.Unlock()
|
|
if callbacks.m == nil {
|
|
callbacks.m = make(map[uintptr]interface{})
|
|
}
|
|
callbacks.c++
|
|
ret := callbacks.c
|
|
callbacks.m[ret] = v
|
|
return ret
|
|
}
|
|
|
|
func callbackLookup(c uintptr) interface{} {
|
|
callbacks.Lock()
|
|
defer callbacks.Unlock()
|
|
ret := callbacks.m[c]
|
|
if ret == nil {
|
|
panic("callback pointer not found")
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func callbackDelete(c uintptr) {
|
|
callbacks.Lock()
|
|
defer callbacks.Unlock()
|
|
if callbacks.m[c] == nil {
|
|
panic("callback pointer not found")
|
|
}
|
|
delete(callbacks.m, c)
|
|
}
|