android_device_xiaomi_sdm66.../loc_api/fake_sched_policy.c
Pandari Sabhapathi 78767a18f6 loc-api: Making off-target garden-app build and run again
After removing libcutils dependency, the off-target garden-app
was not building. This change enables it to build and run again

Change-Id: Ifb0473f5d05c156f761c72e29f6592b443ee9cb3
2014-12-02 12:58:27 -08:00

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;
}