syscall_emul: file descriptor interface changes
authorBrandon Potter <brandon.potter@amd.com>
Fri, 24 Jul 2015 19:25:22 +0000 (12:25 -0700)
committerBrandon Potter <brandon.potter@amd.com>
Fri, 24 Jul 2015 19:25:22 +0000 (12:25 -0700)
commitef08046af413e2dc19cf7e8e1a3a329cc3c05bec
treeeeb29562ef2cd427d1906698882dbd89ef60580b
parent582793468d0fc2f431a1093eb7d5bbf77d7656ae
syscall_emul: file descriptor interface changes

This patch gets rid of unused Process::dup_fd method and does minor
refactoring in the process class files.  The file descriptor max has been
changed to be the number of file descriptors since this clarifies the loop
boundary condition and cleans up the code a bit.  The fd_map field has been
altered to be dynamically allocated as opposed to being an array; the
intention here is to build on this is subsequent patches to allow processes
to share their file descriptors with the clone system call.
src/sim/process.cc
src/sim/process.hh
src/sim/syscall_emul.cc