Community & educational development
by AP
PRESS RELEASE
The American Grants and Loans Catalog is now available. Our new and revised
2013 edition contains more than 2800 financial programs, subsidies, scholarships,
grants and loans offered by the US federal government.
In addition you will also have access to over 2400 programs funded by private
corporations and foundations. That is over 5200 programs available through
various sources of financial providing organizations.
NEW: You will also have access to our live Database that is updated on a daily
basis. This product also provides daily email alerts as programs are announced.
The Database is also available with IP recognition. This allows you to login
without a username or password (Great for libraries or educational institutions
who want their users to access the database).
Businesses, students, researchers, scientists, teachers, doctors, private individuals,
municipalities, government departments, educational institutions, law enforcement
agencies, nonprofits, foundations and associations will find a wealth of information
that will help them with their new ventures or existing projects.
The document is a fully searchable PDF file for easy access to your particular
needs and interests. Simply enter your keywords to search through the publication.
It is the perfect tool for libraries and educational institutions to use as a
reference guide for students who require funds to pursue their education.
Contents of the Directory:
-Web link to program announcement page
-Web link to Federal agency or foundation administering the program
-Authorization upon which a program is based
-Objectives and goals of the program
-Types of financial assistance offered under a program
-Uses and restrictions placed upon a program
-Eligibility requirements
-Application and award process
-Regulations, guidelines and literature relevant to a program
-Information contacts at the headquarters, regional, and local offices
-Programs that are related based upon program objectives and uses
Programs in the Catalog provide a wide range of benefits and services
for categories such as:
Agriculture
Business and Commerce
Community Development
Consumer Protection
Cultural Affairs
Disaster Prevention and Relief
Education
Employment, Labor and Training
Energy
Environmental Quality
Food and Nutrition
Health
Housing
Income Security and Social Services
Information and Statistics
Law, Justice, and Legal Services
Natural Resources
Regional Development
Science and Technology
Transportation
CD version: $69.95
Printed version: $149.95
To order please call: 1 (800) 610-4543
Please do not reply to the sender's email address as this address is only for outgoing mail.
If you do not wish to receive information from us in the future please reply here:
rem218(a)mail.com
This is a CANSPAM ACT compliant advertising broadcast sent by:
American Publishing Inc. , 7025 County Rd. 46A, Suite 1071, Lake Mary, FL, 32746-4753
7 years, 11 months
ACPICA version 20130328 released
by Moore, Robert
28 March 2013. Summary of changes for version 20130328:
This release is available at https://www.acpica.org/downloads
Note: The site is undergoing reconstruction and may not be available for a few days.
1) ACPICA kernel-resident subsystem:
Fixed several possible race conditions with the internal object reference counting mechanism. Some of the external ACPICA interfaces update object reference counts without holding the interpreter or namespace lock. This change adds a spinlock to protect reference count updates on the internal ACPICA objects. Reported by and with assistance from Andriy Gapon (avg(a)FreeBSD.org).
FADT support: Removed an extraneous warning for very large GPE register sets. This change removes a size mismatch warning if the legacy length field for a GPE register set is larger than the 64-bit GAS structure can accommodate. GPE register sets can be larger than the 255-bit width limitation of the GAS structure. Linn Crosetto (linn(a)hp.com).
_OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error return from this interface. Handles a possible timeout case if ACPI_WAIT_FOREVER is modified by the host to be a value less than "forever". Jung-uk Kim.
Predefined name support: Add allowed/required argument type information to the master predefined info table. This change adds the infrastructure to enable typechecking on incoming arguments for all predefined methods/objects. It does not actually contain the code that will fully utilize this information, this is still under development. Also condenses some duplicate code for the predefined names into a new module, utilities/utpredef.c
Example Code and Data Size: These are the sizes for the OS-independent acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code includes the debug output trace mechanism and has a much larger code and data size.
Previous Release:
Non-Debug Version: 95.0K Code, 25.9K Data, 120.9K Total
Debug Version: 182.9K Code, 75.6K Data, 258.5K Total
Current Release:
Non-Debug Version: 95.2K Code, 26.4K Data, 121.6K Total
Debug Version: 183.0K Code, 76.0K Data, 259.0K Total
2) iASL Compiler/Disassembler and Tools:
iASL: Implemented a new option to simplify the development of ACPI-related BIOS code. Adds support for a new "offset table" output file. The -so option will create a C table containing the AML table offsets of various named objects in the namespace so that BIOS code can modify them easily at boot time. This can simplify BIOS runtime code by eliminating expensive searches for "magic values", enhancing boot times and adding greater reliability. With assistance from Lee Hamel.
iASL: Allow additional predefined names to return zero-length packages. Now, all predefined names that are defined by the ACPI specification to return a "variable-length package of packages" are allowed to return a zero length top-level package. This allows the BIOS to tell the host that the requested feature is not supported, and supports existing BIOS/ASL code and practices.
iASL: Changed the "result not used" warning to an error. This is the case where an ASL operator is effectively a NOOP because the result of the operation is not stored anywhere. For example:
Add (4, Local0)
There is no target (missing 3rd argument), nor is the function return value used. This is potentially a very serious problem -- since the code was probably intended to do something, but for whatever reason, the value was not stored. Therefore, this issue has been upgraded from a warning to an error.
AcpiHelp: Added allowable/required argument types to the predefined names info display. This feature utilizes the recent update to the predefined names table (above).
7 years, 11 months
[PATCH] faulty name compares on big-endian machines
by Al Stone
When iasl is checking for GPE name conflicts on big-endian machines,
the comparisons will fail when they should succeed.
The failure is due to the name bytes being in the wrong order. The
bytes are in the wrong order because the name is being treated as a
32-bit integer and not as a string.
This patch causes the name to be used as a string and works properly
on big- and little-endian machines running iasl.
This was found by running tests/misc/badcode.asl through iasl on a
big-endian machine (PPC and s390) and noting that it would not catch
the error at line 184 in badcode.asl that was being caught elsewhere.
Signed-off-by: Al Stone <ahs3(a)redhat.com>
--
source/compiler/aslanalyze.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/source/compiler/aslanalyze.c b/source/compiler/aslanalyze.c
index 99b17e6..bd6272a 100644
--- a/source/compiler/aslanalyze.c
+++ b/source/compiler/aslanalyze.c
@@ -516,7 +516,7 @@ ApCheckForGpeNameConflict (
/* Need a null-terminated string version of NameSeg */
- ACPI_MOVE_32_TO_32 (Name, &Op->Asl.NameSeg);
+ ACPI_MOVE_NAME (Name, &Op->Asl.NameSeg);
Name[ACPI_NAME_SIZE] = 0;
/*
@@ -543,7 +543,7 @@ ApCheckForGpeNameConflict (
* We are now sure we have an _Lxx or _Exx.
* Create the target name that would cause collision (Flip E/L)
*/
- ACPI_MOVE_32_TO_32 (Target, Name);
+ ACPI_MOVE_NAME (Target, Name);
/* Inject opposite letter ("L" versus "E") */
--
ciao,
al
-----------------------------------
Al Stone
Software Engineer
Red Hat, Inc.
ahs3(a)redhat.com
-----------------------------------
7 years, 11 months
Community & educational development
by AP
PRESS RELEASE
The American Grants and Loans Catalog is now available. Our new and revised
2013 edition contains more than 2800 financial programs, subsidies, scholarships,
grants and loans offered by the US federal government.
In addition you will also have access to over 2400 programs funded by private
corporations and foundations. That is over 5200 programs available through
various sources of financial providing organizations.
NEW: You will also have access to our live Database that is updated on a daily
basis. This product also provides daily email alerts as programs are announced.
The Database is also available with IP recognition. This allows you to login
without a username or password (Great for libraries or educational institutions
who want their users to access the database).
Businesses, students, researchers, scientists, teachers, doctors, private individuals,
municipalities, government departments, educational institutions, law enforcement
agencies, nonprofits, foundations and associations will find a wealth of information
that will help them with their new ventures or existing projects.
The document is a fully searchable PDF file for easy access to your particular
needs and interests. Simply enter your keywords to search through the publication.
It is the perfect tool for libraries and educational institutions to use as a
reference guide for students who require funds to pursue their education.
Contents of the Directory:
-Web link to program announcement page
-Web link to Federal agency or foundation administering the program
-Authorization upon which a program is based
-Objectives and goals of the program
-Types of financial assistance offered under a program
-Uses and restrictions placed upon a program
-Eligibility requirements
-Application and award process
-Regulations, guidelines and literature relevant to a program
-Information contacts at the headquarters, regional, and local offices
-Programs that are related based upon program objectives and uses
Programs in the Catalog provide a wide range of benefits and services
for categories such as:
Agriculture
Business and Commerce
Community Development
Consumer Protection
Cultural Affairs
Disaster Prevention and Relief
Education
Employment, Labor and Training
Energy
Environmental Quality
Food and Nutrition
Health
Housing
Income Security and Social Services
Information and Statistics
Law, Justice, and Legal Services
Natural Resources
Regional Development
Science and Technology
Transportation
CD version: $69.95
Printed version: $149.95
To order please call: 1 (800) 610-4543
Please do not reply to the sender's email address as this address is only for outgoing mail.
If you do not wish to receive information from us in the future please reply here:
rem218(a)mail.com
This is a CANSPAM ACT compliant advertising broadcast sent by:
American Publishing Inc. , 7025 County Rd. 46A, Suite 1071, Lake Mary, FL, 32746-4753
7 years, 11 months