summaryrefslogtreecommitdiff
path: root/status.go
diff options
context:
space:
mode:
Diffstat (limited to 'status.go')
-rw-r--r--status.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/status.go b/status.go
index efe6eb0..644b13e 100644
--- a/status.go
+++ b/status.go
@@ -3,14 +3,11 @@ package git
/*
#include <git2.h>
#include <git2/errors.h>
-
-int _go_git_status_foreach(git_repository *repo, void *data);
*/
import "C"
import (
"runtime"
- "unsafe"
)
type Status int
@@ -170,26 +167,3 @@ func (v *Repository) StatusFile(path string) (Status, error) {
}
return Status(statusFlags), nil
}
-
-type StatusCallback func(path string, status Status) int
-
-//export fileStatusForeach
-func fileStatusForeach(_path *C.char, _flags C.uint, _payload unsafe.Pointer) C.int {
- path := C.GoString(_path)
- flags := Status(_flags)
-
- cb := (*StatusCallback)(_payload)
- return C.int((*cb)(path, flags))
-}
-
-func (v *Repository) StatusForeach(callback StatusCallback) error {
- runtime.LockOSThread()
- defer runtime.UnlockOSThread()
-
- ret := C._go_git_status_foreach(v.ptr, unsafe.Pointer(&callback))
-
- if ret < 0 {
- return MakeGitError(ret)
- }
- return nil
-}