Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

BUILD.gn
static_library("POSIX") {
  output_name = "lldbPluginProcessPOSIX"
  configs += [ "//llvm/utils/gn/build:lldb_code" ]
  deps = [
    "//lldb/source/Plugins/Process/Utility",
    "//lldb/source/Utility",
    "//llvm/lib/Support",
  ]

  # Reaches into Plugins/Platform/Process/Utility.
  include_dirs = [ "//lldb/source" ]
  sources = [
    "CrashReason.cpp",
    "NativeProcessELF.cpp",
    "ProcessMessage.cpp",
    "ProcessPOSIXLog.cpp",
  ]
}