Forum Sveta kompjutera

Nazad   Forum Sveta kompjutera > Phone Zone > Programi za mobilne telefone

Programi za mobilne telefone Operativni sistemi i programi za mobilne telefone

Odgovor
 
Alatke vezane za temu Vrste prikaza
Stara 1.10.2006, 10:01   #1
DANILO DAVIDOVIC
Novi član
 
Član od: 19.9.2006.
Lokacija: Crna Gora
Poruke: 4
Zahvalnice: 0
Zahvaljeno jedanput na jednoj poruci
Wink Nokia 6600 POMOC

Kada slusam mp3 muziku u ultra mp3 playeru i kada ga zatvorim pojavi mi se ,,Aplicattion closed,,Sound Stearming,, Zna li neko kako da to uklonim?
******************

Poslednja ispravka: Chivan (15.11.2006 u 13:32) Razlog: piraterija
DANILO DAVIDOVIC je offline   Odgovor sa citatom ove poruke
Stara 6.11.2006, 23:28   #2
Telepatic
Starosedelac
 
Član od: 26.8.2006.
Lokacija: Beograd
Poruke: 1.874
Zahvalnice: 714
Zahvaljeno 204 puta na 119 poruka
Slanje poruke preko Yahooa korisniku Telepatic
Određen forumom Re: Nokia 6600 POMOC

I ja imam problem sa viewsrv11.Jel zna neko nesto vise o tome,i kako da resim taj problem?Evo sta sam ja nasao ali mi nista nije jasno(ne zbog engleskog )-Question:
I am getting a Viewsrv 11 panic from my application - what tips can you give me to avoid this?
Answer:
Viewsrv 11 panics are a hazard when writing busy applications, for instance games. They occur when the Viewsrv active object in your, or any other, application does not respond to the view server in time. Typically 10-20 seconds is the maximum allowed response time - see FAQ-0900 for a more detailed explanation. Here are some guidelines for avoiding common causes of this problem:
1) Do not have long running synchronous operations. The Viewsrv system requires that the active scheduler in your application is able to run the Viewsrv active object. Long running synchronous operations will prevent this. For instance, games typically have a "main game loop", and one incorrect way to code this is "while (1) { GameStep(); }". However, this loop is synchronous, it does not return control to the scheduler, therefore it prevents the scheduler and Viewsrv's active object from running. Instead the steps should be triggered asynchronously, often achieved using a CIdle or CPeriodic active object as a source of events.

2) Ensure that your active objects don't swamp the scheduler. The active scheduler processes active objects strictly in priority order, and for those of the same priority, active objects added first have priority. Active objects that run often and use a lot of processing time should run at low priority. The Viewsrv active object runs at CActive::EPriorityStandard, so busy active objects should run at a lower priority. One note of warning: if you use EPriorityLow, ensure it is scoped as CActive::EPriorityLow, otherwise you may get thread priority EPriorityLow, which is actually a very high priority value for an active object!


4) Do not use User::WaitForRequest(); or similar blocking operations. They will allow other applications to run, but completely block the active scheduler in your application.

5) On some platforms, be aware that launching waiting dialogs (or performing other blocking actions) from ViewActivatedL(); or ViewDeactivatedL(); can also cause Viewsrv 11 panics. This is a feature of UIQ but not Series 60, for example.
Telepatic je offline   Odgovor sa citatom ove poruke
Stara 6.12.2006, 11:45   #3
siux
Novi član
 
Član od: 6.12.2006.
Poruke: 1
Zahvalnice: 0
Zahvaljeno 0 puta na 0 poruka
Question Re: Nokia 6600 POMOC

Citat:
DANILO DAVIDOVIC kaže:
Kada slusam mp3 muziku u ultra mp3 playeru i kada ga zatvorim pojavi mi se ,,Aplicattion closed,,Sound Stearming,, Zna li neko kako da to uklonim?
******************
Da nemas ti kakav programcic koji omogucava duzi video zapis za 6600, ako imas da mi kazes koji je
siux je offline   Odgovor sa citatom ove poruke
Stara 6.12.2006, 12:20   #4
3LANCER
Starosedelac
 
Član od: 9.11.2005.
Lokacija: Beograd
Poruke: 2.286
Zahvalnice: 1.000
Zahvaljeno 401 puta na 248 poruka
Određen forumom Re: Nokia 6600 POMOC

Trebalo bi da FlexyCam moze da odradi posao.
3LANCER je offline   Odgovor sa citatom ove poruke
Stara 8.12.2006, 22:26   #5
Telepatic
Starosedelac
 
Član od: 26.8.2006.
Lokacija: Beograd
Poruke: 1.874
Zahvalnice: 714
Zahvaljeno 204 puta na 119 poruka
Slanje poruke preko Yahooa korisniku Telepatic
Question Re: Nokia 6600 POMOC

Citat:
telepatic kaže:
I ja imam problem sa viewsrv11.Jel zna neko nesto vise o tome,i kako da resim taj problem?Evo sta sam ja nasao ali mi nista nije jasno(ne zbog engleskog )-Question:
I am getting a Viewsrv 11 panic from my application - what tips can you give me to avoid this?
Answer:
Viewsrv 11 panics are a hazard when writing busy applications, for instance games. They occur when the Viewsrv active object in your, or any other, application does not respond to the view server in time. Typically 10-20 seconds is the maximum allowed response time - see FAQ-0900 for a more detailed explanation. Here are some guidelines for avoiding common causes of this problem:
1) Do not have long running synchronous operations. The Viewsrv system requires that the active scheduler in your application is able to run the Viewsrv active object. Long running synchronous operations will prevent this. For instance, games typically have a "main game loop", and one incorrect way to code this is "while (1) { GameStep(); }". However, this loop is synchronous, it does not return control to the scheduler, therefore it prevents the scheduler and Viewsrv's active object from running. Instead the steps should be triggered asynchronously, often achieved using a CIdle or CPeriodic active object as a source of events.

2) Ensure that your active objects don't swamp the scheduler. The active scheduler processes active objects strictly in priority order, and for those of the same priority, active objects added first have priority. Active objects that run often and use a lot of processing time should run at low priority. The Viewsrv active object runs at CActive::EPriorityStandard, so busy active objects should run at a lower priority. One note of warning: if you use EPriorityLow, ensure it is scoped as CActive::EPriorityLow, otherwise you may get thread priority EPriorityLow, which is actually a very high priority value for an active object!


4) Do not use User::WaitForRequest(); or similar blocking operations. They will allow other applications to run, but completely block the active scheduler in your application.

5) On some platforms, be aware that launching waiting dialogs (or performing other blocking actions) from ViewActivatedL(); or ViewDeactivatedL(); can also cause Viewsrv 11 panics. This is a feature of UIQ but not Series 60, for example.
i jel zna neko?
Telepatic je offline   Odgovor sa citatom ove poruke
Stara 12.12.2006, 12:19   #6
Cheguevara
Član
 
Član od: 4.2.2006.
Poruke: 189
Zahvalnice: 68
Zahvaljeno 0 puta na 0 poruka
Slanje poruke preko MSN-a korisniku Cheguevara
Određen forumom Re: Nokia 6600 POMOC

Citat:
DANILO DAVIDOVIC kaže:
Kada slusam mp3 muziku u ultra mp3 playeru i kada ga zatvorim pojavi mi se ,,Aplicattion closed,,Sound Stearming,, Zna li neko kako da to uklonim?
******************
probaj sa nekim drugim programom za mp3 recimo:
Viking Mp3 3.5
Cheguevara je offline   Odgovor sa citatom ove poruke
Stara 19.12.2006, 1:56   #7
srecko87
Član
 
Član od: 18.12.2005.
Lokacija: Novi Sad
Poruke: 56
Zahvalnice: 0
Zahvaljeno 2 puta na jednoj poruci
Slanje poruke preko MSN-a korisniku srecko87
Određen forumom Re: Nokia 6600 POMOC

Mozda imas 2 mp3 plejera u isto vreme.
Ako imas onda uninstaliraj jedan
srecko87 je offline   Odgovor sa citatom ove poruke
Odgovor

Bookmarks sajtovi

Alatke vezane za temu
Vrste prikaza

Vaš status
Ne možete postavljati teme
Ne možete odgovarati na poruke
Ne možete slati priloge uz poruke
Ne možete prepravljati svoje poruke

BB kod: uključeno
Smajliji: uključeno
[IMG] kod: uključeno
HTML kod: isključeno


Slične teme
tema temu započeo forum Odgovora Poslednja poruka
Koji dobar (free) mp3 plejer za Nokia 6600? ZoNi Programi za mobilne telefone 9 7.1.2009 16:39
Pomoc oko flash-ovanja 6600 BIG BROTHER DZONI Grafika 1 18.9.2006 12:04
Mp3 kao zvono (Nokia 6600) Veljko the King Aparati i oprema 1 16.7.2006 15:16
Nokia 6600 Boris Zegarac Aparati i oprema 5 25.4.2006 13:47
Najtvrđa Nokia 3310 hacker_aca Aparati i oprema 5 23.1.2006 3:17


Sva vremena su po Griniču +2 h. Sada je 3:13.


Powered by vBulletin® verzija 3.8.7
Copyright ©2000–2024, vBulletin Solutions, Inc.
Hosted by Beograd.com