views:

40

answers:

0

Am using Android 2.2 source code's following file- android_net_wimax_WimaxCommonAPI.cpp.

This file has a function -

void fun_IndDeviceStatusUpdate(WIMAX_API_DEVICE_ID_P pDeviceId, WIMAX_API_DEVICE_STATUS deviceStatus, WIMAX_API_STATUS_REASON statusReason, WIMAX_API_CONNECTION_PROGRESS_INFO connectionProgressInfo)

that has a particular statement-

env->CallVoidMethod(deviceStatusChangeCB, methodId, pDeviceId, deviceStatus, statusReason, connectionProgressInfo);

I would like to make modifications in this statement so that my omap zoom II device, running on Android 2.2 doesn't hang up after displaying the home screen.

Any suggestions?