Skip to content

Commit

Permalink
CHange files to use capture library located in dinv instead of the on…
Browse files Browse the repository at this point in the history
…es in GoVector
  • Loading branch information
vaastav committed Jun 1, 2018
1 parent d1f4071 commit a2f2f3a
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion capture/inst.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func InstrumentCalls(p *programslicer.ProgramWrapper, pnum, snum int, netConns m
})
//if code was added, add the apropriate import
if injected {
astutil.AddImport(p.Fset, p.Packages[pnum].Sources[snum].Comments, "github.com/DistributedClocks/GoVector/capture")
astutil.AddImport(p.Fset, p.Packages[pnum].Sources[snum].Comments, "bitbucket.org/bestchai/dinv/capture")
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bitbucket.org/bestchai/dinv/dinvRT"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"math/rand"
"net"
"os"
Expand Down
2 changes: 1 addition & 1 deletion dinvRT/test-asserts/microbenchmark_tests/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"encoding/gob"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"io"
"log"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion dinvRT/test-asserts/ricartagrawala/ricartagrawala.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"encoding/gob"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"io"
"log"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion dinvRT/test-asserts/sum/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bitbucket.org/bestchai/dinv/dinvRT"
"encoding/binary"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"math/rand"
"net"
"os"
Expand Down
2 changes: 1 addition & 1 deletion dinvRT/test-asserts/sum/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bitbucket.org/bestchai/dinv/dinvRT"
"encoding/binary"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"net"
"os"
"time"
Expand Down
2 changes: 1 addition & 1 deletion examples/diningPhil/diningphilosopher.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bitbucket.org/bestchai/dinv/dinvRT"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"math/rand"
"net"
"os"
Expand Down
2 changes: 1 addition & 1 deletion examples/linear/coeff/coeff.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"

"bitbucket.org/bestchai/dinv/dinvRT"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/linear/linn/linn.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"

"bitbucket.org/bestchai/dinv/dinvRT"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
)

//var debug = false
Expand Down
2 changes: 1 addition & 1 deletion examples/ricartagrawala/ricartagrawala.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"encoding/gob"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"io"
"log"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion examples/ring/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"encoding/binary"
"flag"
"fmt"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"log"
"net"
"os"
Expand Down
2 changes: 1 addition & 1 deletion examples/sum/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"

"bitbucket.org/bestchai/dinv/dinvRT"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/sum/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"bitbucket.org/bestchai/dinv/dinvRT"

"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
)

const addr = ":9090"
Expand Down
2 changes: 1 addition & 1 deletion instrumenter/instrumenter.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"strings"

"bitbucket.org/bestchai/dinv/programslicer"
"github.com/arcaneiceman/GoVector/capture"
"bitbucket.org/bestchai/dinv/capture"
"golang.org/x/tools/go/ast/astutil"
)

Expand Down

0 comments on commit a2f2f3a

Please sign in to comment.