两种销毁 第一种是正常的销毁,比如用户按下Back按钮或者是activity自己调用了finish()方法;另一种是由于activity处于stopped状态,并且它长期未被使用,或者前台的activity需要更多的资源,这些情况下系统就会关闭后台的进程,以恢复一些内存。需要注意的是这其中有一种情况...
分类:
移动开发 时间:
2014-08-20 17:57:03
阅读次数:
258
进程状态:1)进程的状态的概述:1.1)Running(R),运行或将要运行1.2)Interruptible(S),被阻断而等待一个事件,可能会被一个信号激活1.3)Uninterruptible(D),被阻断而等待一个事件,不会被信号激活1.4)Stopped(T),由于任务的控制或者外部的追踪...
分类:
系统相关 时间:
2014-08-07 12:21:50
阅读次数:
331
SignalDescriptionSignalnumberonLinuxx86[1]SIGABRTProcessaborted6SIGALRMSignalraisedbyalarm14SIGBUSBuserror:"accesstoundefinedportionofmemoryobject"7SIGCHLDChildprocessterminated,stopped(orcontinued*)17SIGCONTContinueifstopped18SIGFPEFloatingpointexception:"..
分类:
其他好文 时间:
2014-07-29 15:31:59
阅读次数:
236
Windows Azure VM的Stopped和Stopped Deallocated状态...
七月 23, 2014 2:34:35 下午 org.apache.catalina.loader.WebappClassLoader loadClass信息: Illegal access: this web application instance has been stopped alread...
分类:
移动开发 时间:
2014-07-23 15:17:46
阅读次数:
277
key:service_state[service]Stateofservice.0-running,1-paused,2-startpending,3-pausepending,4-continuepending,5-stoppending,6-stopped,7-unknown,255-nosuchservice
xammp=apache+php+mysql 相当于一个服务集成包吧,主要是帮助用户免去配置的烦恼。
问题描述:
但是xammp也会出问题,通常是启动不了apache服务,一般会显示如下错误信息:
9:20:15 [Apache] Status change detected: stopped
9:20:15 [Apache] Error: Apache shutdown ...
分类:
其他好文 时间:
2014-06-26 07:09:38
阅读次数:
618
前台和后台命令操作小记:
1.jobs命令查看当前后台运行程序,也可以用ps a查看
2.一个正在运行的程序,按ctrl+z,会将其放入后台运行,但此时它在后台的状态是stopped。
另一种方法加入后台:./a.out & 此时进程的状态跟上面是不一样的 表示把进程放到后台运行。running
3.将一个在后台暂停的命令,变成继续执行:bg
如经过c...
分类:
系统相关 时间:
2014-05-22 07:44:56
阅读次数:
422
1,Master初始化
1.1
if (!this.stopped) {
finishInitialization(startupStatus, false);
loop();
}
1.2 finishInitialization(),这里主要完成master组件components:filesystem manager,servermanager,assig...
分类:
其他好文 时间:
2014-05-21 09:23:05
阅读次数:
269
Activity对象的状态:1.resumed状态Activity处于运行状态可以和用户交互2.paused状态另外一个activity处于前端,但是本activity还可以看见,但不可以交互3.stopped状态另外一个activity处于前端并且完全遮盖住了activityActivity成对的生命周期函数:oncreat()和ondestroy()o..
分类:
其他好文 时间:
2014-05-13 12:58:58
阅读次数:
278