Opera 9.50 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Opera 9.50 (Default branch)
# 1  
Old 06-12-2008
Opera 9.50 (Default branch)

Opera is a full-featured Internet tool, most notably a fully standard conforming Web browser. Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like a password manager, mouse gestures, native Scalable Vector Graphics (SVG) support, an email program, RSS newsfeeds, and IRC chat. It is designed to be fast and highly customizable. License: Free To Use But Restricted Changes:
Opera Link, a bookmark synchronization mechanism, was introduced. Quick Find, a full text history search covering URLs, visited page titles, page content, bookmarks, email, and feeds, was introduced. GUI layout and functionality were optimized. Spatial navigation highlighting was introduced. Customization and accessability were improved. Opera Mail is now more secure, reliable, and faster. The rendering engine and JavaScript/DOM were vastly improved. 64-bit FreeBSD and Linux builds as well as Qt4 builds are available. 32-bit and 64-bit plugins now work out of the box in 64-bit Linux builds.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Solaris

Opera 9.5 for Sparc

Has anyone gotten Opera 9.5 to work? I'm using Solaris Sparc 5.10. The browser is unusable. It crashes even when viewing Opera's Desktop Team blog. I've asked Opera about this, but no reply. I've never been able to get the 9.5 betas to work either. From one Opera user's blog, I don't see any... (0 Replies)
Discussion started by: cooldude
0 Replies
Login or Register to Ask a Question
emulate_branch(3)					     Library Functions Manual						 emulate_branch(3)

Name
       emulate_branch, execute_branch - branch emulation

Syntax
       #include <signal.h>

       emulate_branch(scp, branch_instruction)
       struct sigcontext *scp;
       unsigned long branch_instruction;

       execute_branch(branch_instruction)
       unsigned long branch_instruction;

Description
       The  function  is  passed  a signal context structure and a branch instruction.	It emulates the branch based on the register values in the
       signal context structure.  It modifies the value of the program counter in the signal context  structure  (sc_pc)  to  the  target  of  the
       branch_instruction.   The program counter must initially be pointing at the branch and the register values must be those at the time of the
       branch.	If the branch is not taken the program counter is advanced to point to the instruction after the delay slot (sc_pc += 8).

       If the branch instruction is a `branch on coprocessor 2' or `branch on coprocessor 3' instruction, calls to  execute  the  branch  in  data
       space to determine if it is taken or not.

Return Values
       The  function returns a 0 if the branch was emulated successfully.  A non-zero value indicates the value passed as a branch instruction was
       not a branch instruction.

       The function returns non-zero on taken branches and zero on non-taken branches.

Restrictions
       Since is only intended to be used by it does not check its parameter to see if in fact it is a branch instruction.  It is really a stop gap
       in case a coprocessor is added without the kernel fully supporting it (which is unlikely).

See Also
       cacheflush(2), sigvec(2), signal(3)

								       RISC							 emulate_branch(3)