Projects STRLCPY criu Commits fbe26923
🤬
  • ■ ■ ■ ■ ■ ■
    lib/c/criu.c
    skipped 2030 lines
    2031 2031   return criu_local_feature_check(global_opts, features, size);
    2032 2032  }
    2033 2033   
     2034 +void criu_local_set_empty_ns(criu_opts *opts, int namespaces)
     2035 +{
     2036 + opts->rpc->has_empty_ns = true;
     2037 + opts->rpc->empty_ns = namespaces;
     2038 +}
     2039 + 
     2040 +void criu_set_empty_ns(int namespaces)
     2041 +{
     2042 + criu_local_set_empty_ns(global_opts, namespaces);
     2043 +}
     2044 + 
  • ■ ■ ■ ■ ■ ■
    lib/c/criu.h
    skipped 321 lines
    322 322  int criu_feature_check(struct criu_feature_check *features, size_t size);
    323 323  int criu_local_feature_check(criu_opts *opts, struct criu_feature_check *features, size_t size);
    324 324   
     325 +void criu_local_set_empty_ns(criu_opts *opts, int namespaces);
     326 +void criu_set_empty_ns(int namespaces);
     327 + 
    325 328  #ifdef __GNUG__
    326 329  }
    327 330  #endif
    skipped 3 lines
Please wait...
Page is in error, reload to recover