aboutsummaryrefslogtreecommitdiff
path: root/libc/spec/gpu_ext.td
blob: 69117bbde49933f629ef2456f0d62bcfe773651d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
def GPUExtensions : StandardSpec<"GPUExtensions"> {
  HeaderSpec RPC = HeaderSpec<
    "gpu/rpc.h",
    [], // Macros
    [], // Types
    [], // Enumerations
    [
        FunctionSpec<
            "rpc_reset",
            RetValSpec<VoidType>,
            [ArgSpec<UnsignedIntType>, ArgSpec<VoidPtr>]
        >,
    ]
  >;
  let Headers = [
    RPC,
  ];
}