Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b53eb9db authored by T.J. Mercier's avatar T.J. Mercier
Browse files

libprocessgroup: Use pid_t for ProfileAction::ExecuteForTask

This was missed in commit 1c007996 ("libprocessgroup: Use pid_t
consistently for TIDs").

Change-Id: Idefc9e7c2161ab3163bd1a0cb68b899e10e9c8ed
parent 8dd9d455
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ class ProfileAction {

    // Default implementations will fail
    virtual bool ExecuteForProcess(uid_t, pid_t) const { return false; }
    virtual bool ExecuteForTask(int) const { return false; }
    virtual bool ExecuteForTask(pid_t) const { return false; }
    virtual bool ExecuteForUID(uid_t) const { return false; }

    virtual void EnableResourceCaching(ResourceCacheType) {}