After removing libcutils dependency, the off-target garden-app was not building. This change enables it to build and run again Change-Id: Ifb0473f5d05c156f761c72e29f6592b443ee9cb3
26 lines
562 B
C
26 lines
562 B
C
/* Copyright (c) 2011, Qualcomm Technologies, Inc. All Rights Reserved.
|
|
* Qualcomm Technologies Proprietary and Confidential.
|
|
*/
|
|
|
|
#include "fake_sched_policy.h"
|
|
|
|
/*===========================================================================
|
|
FUNCTION set_sched_policy
|
|
|
|
DESCRIPTION
|
|
Local copy of this function which bypasses android set_sched_policy
|
|
|
|
DEPENDENCIES
|
|
None
|
|
|
|
RETURN VALUE
|
|
0
|
|
|
|
SIDE EFFECTS
|
|
N/A
|
|
|
|
===========================================================================*/
|
|
int set_sched_policy(int tid, SchedPolicy policy)
|
|
{
|
|
return 0;
|
|
}
|