Deleted Added
sdiff udiff text old ( 11386:94c09b607a84 ) new ( 11389:1e55f16160cb )
full compact
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
3 * Copyright (c) 2001-2005 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 322 unchanged lines hidden (view full) ---

331 /**
332 * Find an emulated device driver.
333 *
334 * @param filename Name of the device (under /dev)
335 * @return Pointer to driver object if found, else NULL
336 */
337 EmulatedDriver *findDriver(std::string filename);
338
339 // this function is used to create the LiveProcess object, since
340 // we can't tell which subclass of LiveProcess to use until we
341 // open and look at the object file.
342 static LiveProcess *create(LiveProcessParams *params);
343};
344
345
346#endif // __PROCESS_HH__