Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

2002-12-15-StructParameters.c
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

typedef struct
{
  void *stack;
  unsigned size;
  unsigned avail;
} compile_stack_type;

void foo(void*);
void bar(compile_stack_type T, unsigned);

void test(void) {
  compile_stack_type CST;
  foo(&CST);

  bar(CST, 12);
}