mirror of
https://github.com/ceph/go-ceph
synced 2024-12-15 02:45:52 +00:00
09b6977dc9
Release resources that are allocated while configuring the connection to the cluster. rados_shutdown() should only be needed after a successful call to rados_connect(), however if the connection has been configured with non-default parameters, some of the parameters may be allocated before connecting. rados_shutdown() will free the allocated resources, even if there has not been a connection yet. Note that the finalizers get executed during garbage collection, which can be forced by calling runtime.GC() for testing. Fixes: #109 Signed-off-by: Niels de Vos <ndevos@redhat.com>
14 lines
174 B
Makefile
14 lines
174 B
Makefile
BINARIES := issue-109
|
|
|
|
build: $(BINARIES)
|
|
clean:
|
|
$(RM) $(BINARIES)
|
|
|
|
.PHONY: tests
|
|
tests: issue-109
|
|
valgrind ./issue-109
|
|
|
|
issue-109: issue-109.go
|
|
go build -v issue-109.go
|
|
|