github.com/containerd/containerd@v22.0.0-20200918172823-438c87b8e050+incompatible/runtime/v2/shim/shim_windows.go (about)

     1  // +build windows
     2  
     3  /*
     4     Copyright The containerd Authors.
     5  
     6     Licensed under the Apache License, Version 2.0 (the "License");
     7     you may not use this file except in compliance with the License.
     8     You may obtain a copy of the License at
     9  
    10         http://www.apache.org/licenses/LICENSE-2.0
    11  
    12     Unless required by applicable law or agreed to in writing, software
    13     distributed under the License is distributed on an "AS IS" BASIS,
    14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15     See the License for the specific language governing permissions and
    16     limitations under the License.
    17  */
    18  
    19  package shim
    20  
    21  import (
    22  	"context"
    23  	"io"
    24  	"net"
    25  	"os"
    26  
    27  	"github.com/containerd/ttrpc"
    28  	"github.com/pkg/errors"
    29  	"github.com/sirupsen/logrus"
    30  )
    31  
    32  func setupSignals(config Config) (chan os.Signal, error) {
    33  	return nil, errors.New("not supported")
    34  }
    35  
    36  func newServer() (*ttrpc.Server, error) {
    37  	return nil, errors.New("not supported")
    38  }
    39  
    40  func subreaper() error {
    41  	return errors.New("not supported")
    42  }
    43  
    44  func setupDumpStacks(dump chan<- os.Signal) {
    45  }
    46  
    47  func serveListener(path string) (net.Listener, error) {
    48  	return nil, errors.New("not supported")
    49  }
    50  
    51  func handleSignals(ctx context.Context, logger *logrus.Entry, signals chan os.Signal) error {
    52  	return errors.New("not supported")
    53  }
    54  
    55  func openLog(ctx context.Context, _ string) (io.Writer, error) {
    56  	return nil, errors.New("not supported")
    57  }