Skip to content

Commit 0bafe23

Browse files
committed
Move reaper under shim package
Signed-off-by: Michael Crosby <[email protected]>
1 parent cff5e75 commit 0bafe23

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

cmd/containerd-shim/main_unix.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import (
3939
"github.com/containerd/containerd/linux/shim"
4040
shimapi "github.com/containerd/containerd/linux/shim/v1"
4141
"github.com/containerd/containerd/namespaces"
42-
"github.com/containerd/containerd/reaper"
4342
"github.com/containerd/typeurl"
4443
ptypes "github.com/gogo/protobuf/types"
4544
"github.com/pkg/errors"
@@ -194,7 +193,7 @@ func handleSignals(logger *logrus.Entry, signals chan os.Signal, server *ttrpc.S
194193
case s := <-signals:
195194
switch s {
196195
case unix.SIGCHLD:
197-
if err := reaper.Reap(); err != nil {
196+
if err := shim.Reap(); err != nil {
198197
logger.WithError(err).Error("reap exit status")
199198
}
200199
case unix.SIGTERM, unix.SIGINT:
@@ -248,11 +247,11 @@ func (l *remoteEventsPublisher) Publish(ctx context.Context, topic string, event
248247
}
249248
cmd := exec.CommandContext(ctx, containerdBinaryFlag, "--address", l.address, "publish", "--topic", topic, "--namespace", ns)
250249
cmd.Stdin = bytes.NewReader(data)
251-
c, err := reaper.Default.Start(cmd)
250+
c, err := shim.Default.Start(cmd)
252251
if err != nil {
253252
return err
254253
}
255-
status, err := reaper.Default.Wait(cmd, c)
254+
status, err := shim.Default.Wait(cmd, c)
256255
if err != nil {
257256
return err
258257
}

cmd/containerd-shim/shim_darwin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"os"
2323
"os/signal"
2424

25-
"github.com/containerd/containerd/reaper"
25+
"github.com/containerd/containerd/linux/shim"
2626
runc "github.com/containerd/go-runc"
2727
"github.com/stevvooe/ttrpc"
2828
)
@@ -34,7 +34,7 @@ func setupSignals() (chan os.Signal, error) {
3434
signal.Notify(signals)
3535
// make sure runc is setup to use the monitor
3636
// for waiting on processes
37-
runc.Monitor = reaper.Default
37+
runc.Monitor = shim.Default
3838
return signals, nil
3939
}
4040

cmd/containerd-shim/shim_linux.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"os"
2121
"os/signal"
2222

23-
"github.com/containerd/containerd/reaper"
23+
"github.com/containerd/containerd/linux/shim"
2424
runc "github.com/containerd/go-runc"
2525
"github.com/opencontainers/runc/libcontainer/system"
2626
"github.com/stevvooe/ttrpc"
@@ -34,7 +34,7 @@ func setupSignals() (chan os.Signal, error) {
3434
signal.Notify(signals, unix.SIGTERM, unix.SIGINT, unix.SIGCHLD, unix.SIGPIPE)
3535
// make sure runc is setup to use the monitor
3636
// for waiting on processes
37-
runc.Monitor = reaper.Default
37+
runc.Monitor = shim.Default
3838
// set the shim as the subreaper for all orphaned processes created by the container
3939
if err := system.SetSubreaper(1); err != nil {
4040
return nil, err

cmd/containerd-shim/shim_unix.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"os"
2323
"os/signal"
2424

25-
"github.com/containerd/containerd/reaper"
25+
"github.com/containerd/containerd/linux/shim"
2626
runc "github.com/containerd/go-runc"
2727
"github.com/stevvooe/ttrpc"
2828
)
@@ -34,7 +34,7 @@ func setupSignals() (chan os.Signal, error) {
3434
signal.Notify(signals)
3535
// make sure runc is setup to use the monitor
3636
// for waiting on processes
37-
runc.Monitor = reaper.Default
37+
runc.Monitor = shim.Default
3838
return signals, nil
3939
}
4040

reaper/reaper.go linux/shim/reaper.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
limitations under the License.
1717
*/
1818

19-
package reaper
19+
package shim
2020

2121
import (
2222
"os/exec"

linux/shim/service.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import (
3434
shimapi "github.com/containerd/containerd/linux/shim/v1"
3535
"github.com/containerd/containerd/log"
3636
"github.com/containerd/containerd/namespaces"
37-
"github.com/containerd/containerd/reaper"
3837
"github.com/containerd/containerd/runtime"
3938
runc "github.com/containerd/go-runc"
4039
"github.com/containerd/typeurl"
@@ -81,7 +80,7 @@ func NewService(config Config, publisher events.Publisher) (*Service, error) {
8180
context: ctx,
8281
processes: make(map[string]proc.Process),
8382
events: make(chan interface{}, 128),
84-
ec: reaper.Default.Subscribe(),
83+
ec: Default.Subscribe(),
8584
}
8685
go s.processExits()
8786
if err := s.initPlatform(); err != nil {

0 commit comments

Comments
 (0)