First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 22379
Product:  
Component:  
Status: RESOLVED
Resolution: FIXED
Assigned To: Not yet assigned to anyone <unassigned@gcc.gnu.org>
Host:
Reported against  
Priority:  
Severity:  
Target Milestone:  
 
 
Target:
Reporter: Andrew Pinski <pinskia@gcc.gnu.org>
Add CC:
CC:
Remove selected CCs
Build:
Patch URL:
Summary:
Keywords:
Known to work:
Known to fail:

Attachment Description Type Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 22379 depends on: Show dependency tree
Show dependency graph
Bug 22379 blocks:

Additional Comments:






View Bug Activity   |   Format For Printing   |   Clone This Bug


Description:   Last confirmed: 2005-07-08 21:45 Opened: 2005-07-08 21:44
Forwarded from: <http://gcc.gnu.org/ml/gcc/2005-07/msg00205.html>
void __add_entropy_words(void);
void __wake_up(void);
void SHATransform(void);
static inline __attribute__((always_inline)) void add_entropy_words(void){}
void extract_entropy(void);
static inline __attribute__((always_inline)) void xfer_secondary_pool(void)
{
extract_entropy();
add_entropy_words();
}
void extract_entropy(void)
{
xfer_secondary_pool();
__wake_up();
}
void init_std_data(void)
{
add_entropy_words();
}
void rand_initialize(void)
{
init_std_data();
}

------- Comment #1 From Andrew Pinski 2005-07-08 21:45 -------
Confirmed, since this was only a foward from the email.

------- Comment #2 From Andrew Pinski 2005-07-11 01:12 -------
Patch posted here: <http://gcc.gnu.org/ml/gcc-patches/2005-07/msg00657.html>.

------- Comment #3 From Jan Hubicka 2005-07-12 23:15 -------
I've commited the patch cited above

First Last Prev Next    No search results available      Search page      Enter new bug