62e1370f91
* containerd build clean on Solaris Signed-off-by: Amit Krishnan <krish.amit@gmail.com> * Vendor golang.org/x/sys Signed-off-by: Amit Krishnan <krish.amit@gmail.com>
14 lines
366 B
Go
14 lines
366 B
Go
package server
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/docker/containerd/api/grpc/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
var clockTicksPerSecond uint64
|
|
|
|
func (s *apiServer) AddProcess(ctx context.Context, r *types.AddProcessRequest) (*types.AddProcessResponse, error) {
|
|
return &types.AddProcessResponse{}, errors.New("apiServer AddProcess() not implemented on Solaris")
|
|
}
|