Chinaunix首页 | 论坛 | 博客
  • 博客访问: 346688
  • 博文数量: 90
  • 博客积分: 847
  • 博客等级: 准尉
  • 技术积分: 1373
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-02 10:54
个人简介

跌打滚爬中的小菜鸟...

文章分类

全部博文(90)

文章存档

2015年(5)

2013年(47)

2012年(38)

我的朋友

分类: 其他UNIX

2013-08-19 13:33:46

A substructure of the job structure called an activation group. An activation group is created when an ILE program or a service progrom is started or actived.

Activation Group (ACTGRP) 相当于在作业(Job)内部的一个子结构(Substructure), 当一组程序使用同一个ACTGRP时, 它们可以共享相同的资源. 一个作业内部可以有一个以上的ACTGRP.

ACTGRP共有3中:
1. 自定义命名, 名字可以由定义程序时自行制定;
2. *NEW 调用程序时由系统产生一个新的ACTGRP. 程序结束系统自动释放此ACTGRP.
3. *CALLER 使用上级程序的ACTGRP. 如果是第一级程序, 则使用系统提供的*DFTACTGRP (默认..)
可以使用CL命令 RCLACTGRP (Reclaim Activation Group)释放某个自定义命名ACTGRP中的资源.



link: 
All ILE programs and service programs are activated within a substructure of a job called an activation group. This substructure contains the resources necessary to run the programs. These resources fall into the following general categories:
  • Static program variables
  • Dynamic storage
  • Temporary data management resources
  • Certain types of exception handlers and ending procedures
Activation groups use either single-level storage or teraspace for supplying storage for static program variables. For more information, see Teraspace and Single-Level Storage. When single-level storage is used, the static program variables and dynamic storage are assigned separate address spaces for each activation group, which provides some degree of program isolation and protection from accidental access. When teraspace is used, the static program variables and dynamic storage may be assigned separate address ranges within teraspace, which provides a lesser degree of program isolation and protection from accidental access.
The temporary data management resources include the following:
  • Open files (open data path or ODP)
  • Commitment definitions
  • Local SQL cursors
  • Remote SQL cursors
  • Hierarchical file system (HFS)
  • User interface manager
  • Query management instances
  • Open communications links
  • Common Programming Interface (CPI) communications
The separation of these resources among activation groups supports a fundamental concept. That is, the concept that all programs activated within one activation group are developed as one cooperative application.
Software vendors may select different activation groups to isolate their programs from other vendor applications running in the same job. This vendor isolation is shown in Figure 17. In this figure, a complete customer solution is provided by integrating software packages from four different vendors. Activation groups increase the ease of integration by isolating the resources associated with each vendor package.
Figure 17. Activation Groups Isolate Each Vendor's Application
Activation Groups Isolate Each Vendor's Application
Start of changeThere is a significant consequence of assigning the above resources to an activation group. The consequence is that when anactivation group is deleted, all of the above resources are returned to the system. The temporary data management resources left open at the time the activation group is deleted are closed by the system. The storage for static and dynamic storage that has not been deallocated is returned to the system.End of change
阅读(1951) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~