+
+
+int ProcessCode::csops(unsigned int ops, void *addr, size_t size)
+{
+ // pass pid and audit token both if we have it, or just the pid if we don't
+ if (mAudit)
+ return ::csops_audittoken(mPid, ops, addr, size, mAudit);
+ else
+ return ::csops(mPid, ops, addr, size);
+}
+