Tagged Questions
Multitasking is the apparent simultaneous execution of two or more tasks by a computer.
23
votes
1answer
640 views
C# first class continuation via C++ interop or some other way?
We have a very high performance multitasking, near real-time C# application. This performance was achieved primarily by implementing cooperative multitasking in-house with a home grown scheduler. ...
16
votes
0answers
712 views
Remote Control Event Causing iOS to Terminate Background App [closed]
My app plays background audio using AVAudioPlayer and receives remote control events from iOS. Everything works fine while audio is playing, but if audio is paused and my app is moved into the ...
11
votes
3answers
423 views
The exact moment iOS takes the view snapshot when entering background?
I have a problem when putting my iPhone app to background by pushing the exit button, and then relaunching by tapping the launch icon on the home screen: the app's view does return to its initial ...
11
votes
1answer
4k views
iOS Multi-Tasking Track GPS Location
I was just wondering if it was possible to make an iOS app that would track your location via GPS while it was in the background.
I tried this with the built-in app "Maps", but to no avail.
If this ...
8
votes
5answers
5k views
iPhone - Backgrounding to poll for events
For quite a while I'd been looking into a way in my iPhone app to poll every X minutes to check the data counters. After much reading of the Background Execution documentation and a few trial apps I'd ...
7
votes
2answers
69 views
Cancelling a task which retrieves URLs asynchronously
I'm having a bit of a problem finding out how to cancel this task in C#. I don't exactly have a strong understanding of handling threads and I've tried Googling for some simple code examples to help ...
7
votes
2answers
2k views
Only applicationWillResignActive called when iPhone shuts down?
Hallo experts,
I've tested what's happing with my app when the iPhone is switched off while the app is active. For this purpose I logged the callback methods of the app's lifecycle in the xcode ...
7
votes
2answers
1k views
Correct way to poll server in background
Assuming this is possible, I would like my iOS application, when backgrounded, to poll a server (i.e. essentially, retrieve the contents of a URL every 30 minutes and notify the user if it contains ...
7
votes
9answers
4k views
Designing iPhone iOS4 application behavior: running in background vs. terminating application
We're developing iPhone GPS application for car drivers.
As you probably know, iOS4 introduced multitasking, so our application can run in background - and it is. It's part of its functionality.
The ...
6
votes
3answers
68 views
How to (trivially) parallelize with the Linux shell by starting one task per Linux core?
Today's CPUs typically comprise several physical cores. These might even be multi-threaded so that the Linux kernel sees quite a large number of cores and accordingly starts several times the Linux ...
6
votes
2answers
774 views
When an iOS application goes to the background, are lengthy tasks paused?
Yes, I know if I wish my app to be responsive to users' multitasking actions, such as switch to another app, I should deal with
- (void)applicationWillResignActive:(UIApplication *)application
- ...
6
votes
2answers
4k views
iOS 4 Alarm Clock App with Multitasking Support
I'm making an alarm clock app with multitasking support. However, I'm stuck with some limitations of the sdk.
I need to play selected alarm sound whenever the alarm time comes with some properties ...
6
votes
1answer
6k views
Android singleTask or singleInstance launch mode?
I have an app that has a list as its main activity and then you can click items which opens a detailed view of that item. I also have a search activity that is similar to the main activity and works ...
5
votes
5answers
113 views
Best way to distribute tasks considering latency and efficiency
I'm looking for an algorithm to distribute some tasks. The problem is as follows:
Say I have a central task producer and some client consumers. The producer generates tasks and consumers take tasks ...
5
votes
1answer
113 views
What is the role of Grand Central Dispatch when implementing multitasking in iOS?
I'm a little bit confusing those two concepts when it comes to multitasking implementation. I read that GCD effectively uses all device cores, and also facilitates the work of app developers by making ...
5
votes
2answers
276 views
Multitasking in iPhone 4,“application does not run in back ground” option in X-Code 3.2 info.plist
In X-Code 3.2 in INFO.PLIST we have option "application does not run in back ground" when we check this box and run the application in iPhone 4 ...every minimization leads to exiting of app.
Doesn't ...
5
votes
3answers
203 views
How does cooperative multitasking work?
I read this Wikipedia text slice:
Because a cooperatively multitasked system relies on each process regularly giving up time to other processes on the system, one poorly designed program can ...
5
votes
7answers
422 views
What does it mean to say “linux kernel is preemptive”?
I read that Linux kernel is preemptive, which is different from most Unix kernels. So, what does it really mean for a kernal to be preemptive?
Some analogies or examples would be better than pure ...
5
votes
1answer
1k views
Best Practice - iPhone Background Application Mode
I'm currently testing the latest iOS4 Feature to put my location aware app in the background. Well, it does work! But on the other hand it's quite hart to handle the immense power usage.
The app ...
5
votes
1answer
332 views
iPhone - Changing app settings while application is running in the background
The problem i am having is if i make changes to the application settings while the application is running in the background the changes aren't available in my app until it is restarted. Am i missing ...
5
votes
2answers
679 views
Want app upgraded to 4.0 to exit completely when home button pressed
I am working on an app for iOS 4.0. The app was originally on 2.2.1. I upgraded it to a universal app, but now it seems to be multitasking. When I press the menu button while running the app, instead ...
4
votes
3answers
94 views
Can two processes simultaneously run on one CPU core?
Can two processes simultaneously run on one CPU core, which has hyper threading? I learn from the Internet. But, I do not see a clear straight answer.
Edit:
Thanks for discussion and sharing! My ...
4
votes
2answers
181 views
How not to allow the iOS from taking a screen capture of your app before going into background
You all might know that iOS takes screen shot of your application before throwing it into the background. This is usually for a better User experience like quick animation to bring the app back and ...
4
votes
1answer
95 views
Questions about code using Task queue for parallel web gets
So I've got this code to drill down into a heirarchy of XML documents from a REST api. I posted earlier to get advice on how to make it recursive, then I went ahead and made it parralel.
First, I ...
4
votes
3answers
392 views
How to “fake” multitasking on an 8-bit processor?
I have an Arduino with an Adafruit Motor Shield as part of my robot. I want to run the motors at the same time I play a tone on the piezo element.
The problem is that I don't quite know how to ...
4
votes
1answer
215 views
Preventing snapshot view of your app when coming back from multi-tasking
The problem is this - My app lets you passcode protect itself. I use an interface just like passcode protecting the phone. This has always worked fine, until multi-tasking came along.
The ...
4
votes
4answers
386 views
Parallel.Foreach and Parallel Execution in C#
I am having a task of scanning all the folders name start with "xyz" parallely. I meant if one folder getting scan same time other one should also getting scan. I don't want one by one scanning.
For ...
4
votes
5answers
340 views
Asynchronous barrier in F#
I wrote a program in F# that asynchronously lists all directories on disk. An async task lists all files in a given directory and creates separate async tasks (daemons: I start them using Async.Start) ...
4
votes
2answers
1k views
NSURLConnection and multitasking in iOS
I'm using NSURLConnection to download resources asynchronously in iOS. (They are large-ish PDF files, so it takes some time on a slow connection.)
Now I'm updating my app from iOS 3 to iOS 4. As my ...
4
votes
4answers
605 views
iPhone - fast-app switching and iOS 4
I'm trying to get the following functionality in my iPhone app:
When backgrounded, stays running (doesn't have to do any background work)
When resumed, app picks up where it was left off
I'm ...
4
votes
1answer
818 views
iPhone Application Should Close, not go to Background
I have an application which when the user taps central iphone's button, the application is sent to background. But I want it to be closed.
I can hand event and close it, but may be there is an ...
4
votes
1answer
1k views
How can I determine if multitasking is supported on a device?
I updated to the latest iOS 4 SDK, and updated my iPod touch to the latest OS fine. I built my application against 4.0, and it appears to use the multitasking functionality fine. However, when I run ...
4
votes
1answer
1k views
iPhone Task Completion
I started a few days ago to experiment development for the iPhone platform, and while reading about it's multi-tasking capabilities I found out the "task completion", which can be very useful.
I ...
4
votes
7answers
308 views
Multitasking on iOS4: Does it work only on iPhones?
I have iOS 4.0 on an iPod Touch 2nd Gen.
There's absolutely no multitasking working. Nothing goes to the background, and double-tapping the Home Button results in just nothing. I wanted to test my ...
4
votes
4answers
4k views
Is it possible to test iOS4 multitasking/background music playing on the simulator?
I have added the UIBackgroundModes property in Info.plist to have an array entry of "audio" and have added the call to setup the audio session: [session setCategory: AVAudioSessionCategoryPlayback ...
4
votes
2answers
1k views
AudioQueueStart fails when iphone app running in background iOS4.0
I'm having difficulties starting the AudioQueue when my app is in the background with iOS4.0
The code works fine when the app is active, but fails with -12985 code when running in the background.
...
4
votes
2answers
666 views
perl multiple tasks problem
I have finished my earlier multithreaded program that uses perl threads and it works on my system. The problem is that on some systems that it needs to run on, thread support is not compiled into perl ...
4
votes
7answers
2k views
What is starvation?
In multitasking systems, some abnormal conditions prevent progress of executing processes or threads. I'll refer to both processes and threads simply as "processes". Two of these conditions are called ...
3
votes
3answers
82 views
who is running kernel if cpu is running processes?
Suppose in a two process environment, one process is scheduled for execution by the kernel, and it demanded for some data which is not available in the RAM. So the cpu will indicate the kernel that ...
3
votes
2answers
173 views
What method is called after 'applicationDidBecomeActive'?
it's my first question here as I have a problem developing my first iOS app. It is one of the thousands of flashlight apps, however I'm trying to put as many features as possible to it. One of them is ...
3
votes
1answer
66 views
Single-Tasking for programming competitions
I will start with the question and then proceed to explain the need:
Given a single C++ source code file which compiles well in modern g++ and uses nothing more than the standard library, can I ...
3
votes
1answer
293 views
Check for application resuming from inactive as apposed to first starting?
I have a NSTimer that I am stopping when my application resigns active, which I later restart when the application again becomes active. What I did not realise was that applicationWillResignActive ...
3
votes
1answer
461 views
iOS 4.x/5.0 - push notifications for background/multitasking apps?
Is there a way to get an app to receive the remote push notification while it is in the background?
I don't want to see the regular (close,view ) notification on my device. i want to go silently ...
3
votes
1answer
368 views
How do I stop MPMoviePlayerController from showing my app's icon on the iPod controls in iOS4.0+?
I use an MPMoviePlayerController to play a movie inside my application.
When the movie is playing, if I double-press the home button and scroll to the left (where the iPod icon usually is as well as ...
3
votes
1answer
1k views
iOS multitasking : let a stream play when the app is in the tray
Does anyone knows how I can let an audio stream play (from a webview ou in a AVPlayer component) after the app lose focus (when the home button is pushed) ? In iOS 4.2. I know I must read about ...
3
votes
1answer
301 views
How to get a PERMANENT application notifier in the status bar?
I searched on the Internet alot but cant find a proper answer to this.
I have used apps like 3G watchdog and Advanced task killer on my android phone. I noticed that they always have an icon up when ...
3
votes
2answers
668 views
Why does my indefinite UIView animation stop when my application goes to the background?
I am using the following code for animating a UIView indefinitely:
#define DEFAULT_ANIM_SPPED 0.6
#define INFINATE_VALUE 1e100f
[UIView beginAnimations:nil context:nil];
[UIView ...
3
votes
2answers
190 views
Which applications launch into background state?
I'm reading through the multitasking documentation, and it has a few references to apps which launch directly into the background state, never entering the foreground state. Is this really allowed for ...
3
votes
3answers
980 views
GUI is stuck with uibackgroundmodes= voip, audio
I have tabbar-based application. When I put in my plist UIBackgroundModes (my application is supposed to support voip), the GUI doesn't load. It sucks on Splash screen and doesn't load the first tab ...
3
votes
1answer
508 views
Play video's audio track when enter background?
I'm using mpmovieplayer to play video on ios 4, and I want to keep the audio playing when my app enter background, but it doesn't work. I thing it's because video player use GPU to render video on ...