Home | History | Annotate | Download | only in cgo
      1 // Copyright 2015 The Go Authors.  All rights reserved.
      2 // Use of this source code is governed by a BSD-style
      3 // license that can be found in the LICENSE file.
      4 
      5 #include <stdio.h>
      6 #include <stdlib.h>
      7 
      8 void
      9 x_cgo_sys_thread_create(void* (*func)(void*), void* arg) {
     10 	fprintf(stderr, "x_cgo_sys_thread_create not implemented");
     11 	abort();
     12 }
     13 
     14 void
     15 _cgo_wait_runtime_init_done() {
     16 	// TODO(spetrovic): implement this method.
     17 }
     18 
     19 void
     20 x_cgo_notify_runtime_init_done(void* dummy) {
     21 	// TODO(spetrovic): implement this method.
     22 }