~ubuntu-branches/ubuntu/trusty/cctools/trusty-proposed

« back to all changes in this revision

Viewing changes to parrot/src/pfs_dispatch64.cc

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2012-03-30 12:40:01 UTC
  • mfrom: (9.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120330124001-ze0lhxm5uwq2e3mo
Tags: 3.4.2-2
Added patch to handle a missing CFLAGS variable in Python's sysconfig
report (Closes: #661658).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2225
2225
                        }
2226
2226
                        break;
2227
2227
 
 
2228
                case SYSCALL64_faccessat:
 
2229
                        if(entering) {
 
2230
                                tracer_copy_in_string(p->tracer,path,POINTER(args[1]),sizeof(path));
 
2231
                                p->syscall_result = pfs_faccessat(args[0],path,args[2]);
 
2232
                                if(p->syscall_result<0) p->syscall_result = -errno;
 
2233
                                divert_to_dummy(p,p->syscall_result);
 
2234
                        }
 
2235
                        break;
 
2236
 
2228
2237
                case SYSCALL64_uname:
2229
2238
                        if(pfs_false_uname) {
2230
2239
                                struct utsname u;