HomeSort by: relevance | last modified time | path
    Searched defs:retcode (Results 1 - 25 of 105) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
clone5.c 27 int retcode; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
31 if (retcode == -1 && errno == ENOSYS)
ex1.c 37 int retcode; local
41 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
42 if (retcode != 0)
43 fprintf (stderr, "create a failed %d\n", retcode);
44 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
45 if (retcode != 0)
46 fprintf (stderr, "create b failed %d\n", retcode);
47 retcode = pthread_join (th_a, &retval);
48 if (retcode != 0)
49 fprintf (stderr, "join a failed %d\n", retcode);
    [all...]
rtsigprocmask1.c 29 int retcode; local
37 retcode = pthread_create (&th_a, NULL, process, NULL);
38 if (retcode != 0)
42 retcode
46 if (retcode == ENOSYS)
sig12.c 27 int retcode; local
sig9.c 26 int retcode; local
31 retcode = pthread_join (th_a, &retval);
32 if (retcode != 0 || retval != NULL)
thread3.c 28 int retcode; local
32 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
33 if (retcode != 0)
35 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
36 if (retcode != 0)
38 retcode = pthread_join (th_a, &retval);
39 if (retcode != 0)
41 retcode = pthread_join (th_b, &retval);
42 if (retcode != 0)
thread4.c 35 int retcode; local
39 retcode = pthread_create (&th_a, NULL, process, NULL);
44 retcode = pthread_cancel (th_a);
45 retcode = pthread_join (th_a, &retval);
46 if (retcode != 0)
clone1.c 33 int retcode; local
39 retcode = pipe (pip);
41 if (retcode != 0)
43 fprintf (stderr, "Bad pipe %d\n", retcode);
56 if ((retcode = read (pip[0], buf, 1)) != 1)
58 fprintf (stderr, "Bad read 1: %d\n", retcode);
62 retcode = read (pip[0], buf, 2);
63 if (retcode == 1)
65 retcode = read (pip[0], buf+1, 1);
66 if (retcode != 1
    [all...]
thread5.c 39 int retcode; local
47 retcode = pthread_create (&th_a, NULL, process, NULL);
48 if (retcode != 0)
72 retcode = pthread_join (th_a, &retval);
73 if (retcode != 0)
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
clone5.c 27 int retcode; local
30 retcode = clone (process, (char *) stack + sizeof (stack) - 64, 0, "cba");
31 if (retcode == -1 && errno == ENOSYS)
ex1.c 37 int retcode; local
41 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
42 if (retcode != 0)
43 fprintf (stderr, "create a failed %d\n", retcode);
44 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
45 if (retcode != 0)
46 fprintf (stderr, "create b failed %d\n", retcode);
47 retcode = pthread_join (th_a, &retval);
48 if (retcode != 0)
49 fprintf (stderr, "join a failed %d\n", retcode);
    [all...]
rtsigprocmask1.c 29 int retcode; local
37 retcode = pthread_create (&th_a, NULL, process, NULL);
38 if (retcode != 0)
42 retcode
46 if (retcode == ENOSYS)
sig12.c 27 int retcode; local
sig9.c 26 int retcode; local
31 retcode = pthread_join (th_a, &retval);
32 if (retcode != 0 || retval != NULL)
thread3.c 28 int retcode; local
32 retcode = pthread_create (&th_a, NULL, process, (void *) "a");
33 if (retcode != 0)
35 retcode = pthread_create (&th_b, NULL, process, (void *) "b");
36 if (retcode != 0)
38 retcode = pthread_join (th_a, &retval);
39 if (retcode != 0)
41 retcode = pthread_join (th_b, &retval);
42 if (retcode != 0)
thread4.c 35 int retcode; local
39 retcode = pthread_create (&th_a, NULL, process, NULL);
44 retcode = pthread_cancel (th_a);
45 retcode = pthread_join (th_a, &retval);
46 if (retcode != 0)
clone1.c 33 int retcode; local
39 retcode = pipe (pip);
41 if (retcode != 0)
43 fprintf (stderr, "Bad pipe %d\n", retcode);
56 if ((retcode = read (pip[0], buf, 1)) != 1)
58 fprintf (stderr, "Bad read 1: %d\n", retcode);
62 retcode = read (pip[0], buf, 2);
63 if (retcode == 1)
65 retcode = read (pip[0], buf+1, 1);
66 if (retcode != 1
    [all...]
thread5.c 39 int retcode; local
47 retcode = pthread_create (&th_a, NULL, process, NULL);
48 if (retcode != 0)
72 retcode = pthread_join (th_a, &retval);
73 if (retcode != 0)
  /src/sys/fs/nfs/client/
nlminfo.h 39 int retcode; /* return code for lock requests */ member in struct:nlminfo
  /src/external/gpl2/xcvs/dist/src/
no_diff.c 33 int retcode = 0; local
58 retcode = RCS_cmp_file (vers->srcfile, vers->vn_user, NULL, NULL, options,
60 if (retcode == 0)
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_fops.c 63 int retcode; local
90 retcode = -dev->driver->open(dev, priv);
91 if (retcode != 0) {
94 return retcode;
116 int retcode; local
129 retcode = devfs_set_cdevpriv(priv, drm_close);
130 if (retcode != 0) {
132 return retcode;
147 retcode = -dev->driver->open(dev, priv);
148 if (retcode != 0)
    [all...]
  /src/usr.sbin/sysinst/
upgrade.c 58 int retcode = 0; local
115 process_menu(MENU_distset, &retcode);
116 if (retcode == 0)
203 int retcode = 0; local
224 process_menu(MENU_distset, &retcode);
225 if (retcode == 0)
install.c 156 int retcode = 0, res; local
226 process_menu(MENU_distset, &retcode);
227 if (retcode == 0)
  /src/external/bsd/unbound/dist/winrc/
anchor-update.c 137 int retcode = 1; local
145 if(r == 0) retcode = 0;
151 return retcode;
  /src/external/gpl3/gcc/dist/libgcc/config/bfin/
linux-unwind.h 53 char retcode[8]; member in struct:rt_sigframe

Completed in 20 milliseconds

1 2 3 4 5