I think you want to do duel processing on the Arduino and have two things run at once. The Aruino can't do that. Everything in your code has to be sequential.
You can't redefine the function 'loop' like that. It has already been defined. You will have to figure out what you want to do within the first 'loop' function and that function only. Whether that means calling other functions or just doing everything there for now.
Thank You a lot of you guys, But I need to simple and basic multi processing codes. Can I just remove void loop(), and use only while loop codes, can that possible?